Could some one help me to make like 5 / 10 sum generator with random codes and each sum on a other page?
Maybe you got skype and you could help me out and help me? So I got teached also
got this page so far:
<?php SESSION_START();
if(!empty($_POST['submit']))
{ $pre=$_SESSION['ans''];
$answer=$_POST['ant'];
$1= rand(0,30);
$2= rand(0,30);
$answer=$1+$2;
$_SESSION['ans']=$answer;
echo "<br>$1+$2=";
}
else
{
?>
<html>
<head>
<title>Math</title>
</head>
<body>
<h2>+</h2>
<form method='post' action=''>
Your answer:<input name='ans'><br>
</select>
<br><br>
<input name='submit' type='submit' value='next'>
<input name='reset' type='reset' value='delete'>
</form>
<?php
}
?>
Thank you~