AJAX | JavaScript | HTML | PHP Answers

Questions: 323

Answers by our Experts: 213

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

You are required to develop an online complains management system for your local municipality
I'm trying to create a multiple choice question, giving the user 4 possible choices for the answer. I need these choices in the form of Radio buttons. Then I need to make it so the user cannot continue until they have selected the correct answer. Any incorrect or correct answer needs to be prompted on screen to the user (not an alert box) What would be the code for this?
I need to implement a web service for order product online and how I can do this service with Java and XML

as a small application
Do you write Dissertations?
I downloaded a source code for designing a online store that is written with php,but when I want to run it by wampserver it shows this error.I ran this project by easy php and again it had same error.
The error is :
Notice: Undefined index: catid in C:Program FilesEasyPHP-5.3.5.0wwwoutput_fns.php on line 77

and line 77 in output_fns file is:

if($_GET['catid']==$row['catid'] || $row['catid']==$catid)

if you want I can mail complete project for you.please help me,its necessary.
thanks
Quick Quiz var answers = new Array();
answers[0] = "d";
answers[1] = "b";
answers[2] = "a";
answers[3] = "b";
answers[4] = "b";
answers[5] = "c";
answers[6] = "a";
answers[7] = "b";
answers[8] = "b";
answers[9] = "c";

var currentQues = 0;
var numQues = answers.length;
var numChoi = 4;

function getScore(form) {

var score = 0;
var currElt;
var currSelection;
for (i=0; i<numQues; i++) {
currElt = i*numChoi;
for (j=0; j<numChoi; j++) {
currSelection = form.elements[currElt + j];
if (currSelection.checked) {
if (currSelection.value == answers[i]) {
score++;
break; }
}
}
}

score = Math.round(score/numQues*100);
form.percentage.value = score;
return false;

}

function validate_form(theForm)
{
var radioSelected = false;
for (i = 0; i < theForm.q1.length; i++)
{
if (theForm.q1[i].checked)
radioSelected = true;
}
if (!radioSelected)
{
alert("Pls answer question No. 1");
return (false);
}

va
Arrays and loops in "php"

Write a program that asks the user to type 10 integers of an array. The program will then display either "the array is growing", "the array is decreasing", "the array is constant", or "the array is growing and decreasing."
Design an interface using suitable controls
I have a checkbox with each date in calendar
Now i wand to display selected checkbox date and Text box with every date.
create an array that will show the sort functions in php:
displaying the scores of 10 students

-asort()
-sort()
-rsort()
-ksort()
-arsort()
-krsort()
LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS