Online Exam Portal

Welcome. Please Login, Register, Or Activate! 
type your username and password to login
Date: November 23, 2009, 04:55 PM
431386 members and 298414 Topics
Latest Member: BenSays
Nairaland [Nigerian Forum] Home Help Search Who is currently online? Login Register
Nairaland Forum  |  Technology  |  Programming  |  Online Exam Portal
Pages: (1) Go Down Send this topic Notify of replies
Author Topic: Online Exam Portal  (Read 772 views)
uchmandre (m)
Online Exam Portal
« on: May 28, 2009, 12:41 PM »

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
javabeasns
Re: Online Exam Portal
« #1 on: May 30, 2009, 12:19 PM »

I am working on a similar job for a client. I can help you out too.
Call david on 08035133522
mydevbox
Re: Online Exam Portal
« #2 on: May 30, 2009, 01:43 PM »

Hey, if u are very serious about this, call 07028093310 or 08028177975. U cld get a demo as long as your intentions are genuine.
mydevbox
Re: Online Exam Portal
« #3 on: May 30, 2009, 02:19 PM »

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.
AhmedGuru (m)
Re: Online Exam Portal
« #4 on: June 10, 2009, 10:18 AM »

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.comCool Cool Cool
derfla (m)
Re: Online Exam Portal
« #5 on: June 10, 2009, 11:09 PM »

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.
profit$
Re: Online Exam Portal
« #7 on: June 23, 2009, 12:41 AM »

I havent done this before, though I do sites development, Experience is the best teacher
mayowae (m)
Re: Online Exam Portal
« #8 on: July 01, 2009, 11:51 AM »

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
GoodMuyis (m)
Re: Online Exam Portal
« #9 on: July 06, 2009, 12:01 PM »

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


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

<p>Question one typed here</p>

<input type = 'radio' name ='1' value= 'false'>False answer one<br />
<input type = 'radio' name ='1' value= 'false'>False answer two<br />
<input type = 'radio' name ='1' value= 'true'>Correct answer<br />
<input type = 'radio' name ='1' value= 'false'>False answer three<br />

<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:
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:
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"){
         //increase score by one
        $score++;
    }
}
echo 
"Your score is: $score";
}
?>




* nigeria.gif (73.3 KB, 149x163 )
 Any Others Sharing Sites Like 4shared  Game Development,the Next Level:   Networking  Page 2
Pages: (1) Go Up Send Topic to Friend by E-mail Reply 


Sections: Autos/Cars (2) Jobs/Vacancies (2) (3) Career Talk Education General(2) Politics Romance Computers Phones Travel
Sports Fashion Health Religion Celebrities TV/Movies (2) Music/Radio (2) Books Webmasters Programming

Links: Page1 Page2 Page3 Page4 Page5 Page6 Page7 Page8 Page9 Page10

Nairaland is owned by Oluwaseun Osewa. See also: Nairalist Classified Ads
Nairaland Forum | Powered by SMF 1.0.12.
© 2001-2005, Lewis Media. All Rights Reserved.