lovecalculator
/////////////////////////////
////// calculate.php //////
////////////////////////////
<html>
<head>
<title>calculate</title>
</head>
<body>
<center><font color='#00037e' font size='4'><a href='javascript:location.reload()'>Love calculator</a></font></center>
<br><hr><br><br>
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?
//kijk of er gepost is
if($HTTP_POST_VARS[submit] && $HTTP_POST_VARS[naam1] && $HTTP_POST_VARS[naam2])
{
//zoja: begin de randomfunctie
function LoveCal($length)
{
for ($i = 1; $i <= $length; $i++)
{
if ($i == 1)
$procent = rand(0, 9);
else
$procent.= rand(0, 9);
}
return $procent;
}
//geef een echo
$procenten = LoveCal(2);
echo "Volgens de lovecalculator passen zij voor $procenten procent bij elkaar<br><br>Klik <a href='$PHP_SELF'>hier</a> om nog een keer te calculeren";
}
//zonee: geef dan het formulier
else
{
echo"<form method='post' action='$PHP_SELF'><table border='1' bordercolor='#00037e' bgcolor='#cccccc'>
<tr><td colspan='2' bgcolor='#00037e'><font color='#ffffff'>Love calculator</font></td></tr>
<tr><td>Naam1:</td><td><input type='text' name='naam1'></td></tr>
<tr><td>naam2:</td><td><input type='text' name='naam2'></td></tr>
<tr><td> </td><td><input type='submit' name='submit' value='calaculate'></td></tr>
</table></form>";
}
?>
//kijk of er gepost is
if($HTTP_POST_VARS[submit] && $HTTP_POST_VARS[naam1] && $HTTP_POST_VARS[naam2])
{
//zoja: begin de randomfunctie
function LoveCal($length)
{
for ($i = 1; $i <= $length; $i++)
{
if ($i == 1)
$procent = rand(0, 9);
else
$procent.= rand(0, 9);
}
return $procent;
}
//geef een echo
$procenten = LoveCal(2);
echo "Volgens de lovecalculator passen zij voor $procenten procent bij elkaar<br><br>Klik <a href='$PHP_SELF'>hier</a> om nog een keer te calculeren";
}
//zonee: geef dan het formulier
else
{
echo"<form method='post' action='$PHP_SELF'><table border='1' bordercolor='#00037e' bgcolor='#cccccc'>
<tr><td colspan='2' bgcolor='#00037e'><font color='#ffffff'>Love calculator</font></td></tr>
<tr><td>Naam1:</td><td><input type='text' name='naam1'></td></tr>
<tr><td>naam2:</td><td><input type='text' name='naam2'></td></tr>
<tr><td> </td><td><input type='submit' name='submit' value='calaculate'></td></tr>
</table></form>";
}
?>
</body>
</html>