Sorry for the long post. I got the index.html to work with the quiz1.php, but I can't get the questions and checkbox to work right meaning be inserted to the database with the other info from the index.html. It should insert the info from index.html and the info from quiz1.php. Need help getting this to work.
This is what I have done so far.
Form (index.html) First page (Gets the person info)
<form action="quiz1.php" method="post">
Full Name: <input type="text" name="full_name" />
Quiz Name: <input type="text" name="quiz_name" />
Class Name: <input type="text" name="class_name" />
Date: <input type="text" name="quiz_taken" />
<input type="submit" value="Submit" class="flashit">
</form>
Quiz (quiz1.php) Second page (Puts the info from the index.html on the top)
<?php
// info from index.html
$_SESSION['full_name'] = $_POST['full_name'];
$_SESSION['quiz_name'] = $_POST['quiz_name'];
$_SESSION['class_name'] = $_POST['class_name'];
$_SESSION['quiz_taken'] = $_POST['quiz_taken'];
echo $_SESSION['full_name'];
echo "<br />";
echo $_SESSION['quiz_name'];
echo "<br />";
echo $_SESSION['class_name'];
echo "<br />";
echo $_SESSION['quiz_taken'];
echo "<br />";
echo "<br />";
?>
// quiz info
<?php
$db_host = "localhost";
// Place the username for the MySQL database here
$db_username = "root";
// Place the password for the MySQL database here
$db_pass = "";
// Place the name for the MySQL database here
$db_name = "test";
// Run the actual connection here
mysql_connect("$db_host","$db_username","$db_pass") or die ("could not connect to mysql");
mysql_select_db("$db_name") or die ("no database");
//retreive questions from database and put into question box
$query2 = "SELECT `id`, `question`, `aee`, `bee`, "
. "`cee`, `dee`, `quizAnswer` FROM `quiz1question`";
$question2 = mysql_query($query2);
$answerFields = array(
'aee'=>'aee',
'bee'=>'bee',
'cee'=>'cee',
'dee'=>'dee'
);
while ($row = mysql_fetch_array($question2))
{
$id = $row['id'];
$question = $row['question'];
echo '<form action="insert.php" method="post">';
// Print Question
printf('<div id="ContainerQuestion">');
printf('<span class="Question">%s. %s</span>', $id, $question);
// Print Answers
foreach ($answerFields as $field=>$ans)
{
if (array_key_exists($field, $row) && $row[$field])
{
$checked = ($row["quizAnswer"] == $ans) ? 'checked' : '';
printf(
'<p><input type="checkbox" name="%s" %s value="%s">%s</p>',
$id,
$checked,
$ans,
$row[$field]
);
}
}
}
echo '<input type="submit" value="Submit Quiz"></form>';
?>
results (insert.php) Third page (Input the info from page one and two to the database)
<?php
$localhost = "localhost";
$username = "root";
$password = "";
$database = "test";
$table = "quiz_results";
mysql_connect("$localhost","$username","$password") or die(mysql_error());
mysql_select_db("$database") or die(mysql_error());
// question & answers
$mysql1 = "INSERT INTO $table (question, aee, bee, cee, dee) "
. "VALUES ('$_POST[question]','$_POST[aee]',"
. "'$_POST[bee]','$_POST[cee]','$_POST[dee]')";
if(!mysql_query($mysql1))
{
die(mysql_error());
}
// insert Name, quiz name, class name, and quiz taken
$mysql = "INSERT INTO $table (full_name, quiz_name, class_name, quiz_taken) "
. "VALUES ('$_POST[full_name]','$_POST[quiz_name]',"
. "'$_POST[class_name]','$_POST[quiz_taken]')";
if(!mysql_query($mysql))
{
die(mysql_error());
}
// echo
echo"Thank you!"; // mysql1
echo "<br />";
echo"Your Quiz has been Inserted"; // mysql
mysql_close();
?>