Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,155,781 members, 7,827,880 topics. Date: Tuesday, 14 May 2024 at 06:26 PM

Online Exam Portal - Software/Programmer Market - Nairaland

Nairaland Forum / Science/Technology / Programming / Software/Programmer Market / Online Exam Portal (12085 Views)

Online Exam Application Software. (2) (3) (4)

(1) (Reply) (Go Down)

Online Exam Portal by uchmandre(m): 12:41pm On May 28, 2009
hi,
I need urgent information on where I can get anybody or company that can help me develop a world class web-based real-time online exam web applications and site. Iam in Lagos Nigeria.
thanks
Re: Online Exam Portal by javabeasns: 12:19pm On May 30, 2009
I am working on a similar job for a client. I can help you out too.
Call david on 08035133522
Re: Online Exam Portal by mydevbox: 1:43pm On May 30, 2009
Hey, if u are very serious about this, call 07028093310 or 08028177975. U cld get a demo as long as your intentions are genuine.
Re: Online Exam Portal by mydevbox: 2:19pm On May 30, 2009
Actually replied b4 now, bt for sm reasons my post wasnt visible so i am posting again.
If u are very serious about this, call 07028093310 or 08028177975. U cld get a demo as long as your intentions are genuine.
Re: Online Exam Portal by AhmedGuru(m): 10:18am On Jun 10, 2009
I have one Online Test Engine that has been built and easily customizable to fit most exam scenarios. You can contact me with onlylakunce@yahoo.com. cool cool cool
Re: Online Exam Portal by derfla(m): 11:09pm On Jun 10, 2009
There's just one trusted way to go, www.softgenie.com

They are the world leading webite developers and related technology in the United States, Nigeria and Asia.

Try them. They built some websites for us recently.
Re: Online Exam Portal by profits1: 12:41am On Jun 23, 2009
I havent done this before, though I do sites development, Experience is the best teacher
Re: Online Exam Portal by mayowae(m): 11:51am On Jul 01, 2009
I want to believe that the reasons for online exam is to automate the exam processes which will encourage speed of result computation, reduce fraud and other exam malpractices and so on. Well, this is achievable with the present available infrastructure. There are different implementation when we are talking about online exams, the type of implementation will dictate the risks involved, the facilities required and the expected results.

My company has developed a similar software solution which is customizable to suite any kind Nigerian exam requirements.

My name is Fadahunsi Mayowa, from Obanet Nigeria Ltd, www.obanetc.com . My company has developed a similar software solution which is customizable to suite any kind Nigerian exam requirements, my email is mayowae@yahoo.com or mayowa@obanetc.com or you can call me on 08025783922
Re: Online Exam Portal by GoodMuyis(m): 12:01pm On Jul 06, 2009
I hope you will thank me for this HTML and PHP quiz script

Get information from a group of radio buttons you should start off by giving them all the same name but different values.

With a quiz, it would seem sensible to make the value of the radio button true for the correct answer and false for all the rest. So, for example, your first question could be coded as such:

CODE



<form action="answers.php" method="post">

<p>Question one typed here</p>

<input type = 'radio' name ='1' value= 'false'>False answer one

<input type = 'radio' name ='1' value= 'false'>False answer two

<input type = 'radio' name ='1' value= 'true'>Correct answer

<input type = 'radio' name ='1' value= 'false'>False answer three


<input type="submit" name="submit" value="Submit Answers">

</form>



Server side (PHP)

You would repeat this for every question, changing the name to the question number for each set.

Then, once you have coded the form you would need to add some php to handle the answers. I would do it in a seperate page but you can do it is the same page if you wish. I created a page called answers.php and when you click the submit button all the values from the selected radio boxes are submitted to that page ready to be processed.

First you should check that the form has been submitted and someone has not found their way to the answers page directly a simple if statement works well for this:


CODE

//This checks to see if the submit button was clicked
if (isset($_POST['submit'])) {

}


Any code you write to handle the scoring should be placed in this statement.

As you know how many questions there are you can use a for statement to loop through each question and retrieve the answer given increasing the score if it is correct.


CODE

<?php
if (isset($_POST['submit'])) {
//first initialise the score variable
$score = 0;

//for statement this will loop through 50 times
for ($i=1; $i<51; $i++){
    $answer = $_POST[$i];
// for each iteration this sets the variable $answer to the value of the
//the question number i so on the first iteration i = 1 so we are looking
//at question number one.

    //if statement to test the value of $answer
    if ($answer == "true"wink{
         //increase score by one
        $score++;
    }
}
echo "Your score is: $score";
}
?>

(1) (Reply)

Link To Cracked Version Of Xamarin With Visual Studio / Request Any Software Development For Free / Cheap, Fast, Reliable Website Hosting And Programming Services.

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 20
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.