Nieuw lid |
|
Alleen het begin doet het, als de naam te lang is. Maar daarna drukt die niks af:S
<?php
error_reporting(E_ALL);
?>
<html>
<head>
<title>Love Calculator</title>
<STYLE TYPE="text/css">
<!--
BODY, P {color: black; font-family: verdana; font-size: 10 pt}
H1 {color: black; font-family: arial; font-size: 12 pt}
-->
</STYLE>
</head>
<body>
<?php
$u=$_GET['u'];
$other=$_GET['other'];
$u_1=strlen($u);
$o_1=strlen($other);
if ($u_1 > 8)
{
print( "Wat is dat nou weer voor naam?" );
exit;
}
if ($o_1 > 8)
{
print( "Wat is dat nou weer voor naam?" );
exit;
}
$u = trim($u);
$other = trim($other);
if ($other=="kasper")
print( "Don't use my name!" );
exit;
if ($u=="kasper")
print( "Zo heet je helemaal niet." );
exit;
if ($u_1/$o_1 < 0,5)
$match="Zou je wel willen hè $u, wie wilt niet met $other neuken?" ;
elseif ($u="daniel" or $u="daniël")
$match="Dit is een alleen hetero calculator. Jammer voor je, $u.";
elseif ($u_1/$o_1 < 1)
{
if (isset(!$_POST['a']))
{
?>
<form method="GET" action="love.php>
<p>Wil je met haar:</p>
<input type="radio" name="c" value="g" /> ...<br>
<input type="radio" name="c" value="h" /> ...<br>
<input type="radio" name="c" value="i" /> ...<br>
<input type="radio" name="c" value="j" /> ..<br>
<input type="radio" name="c" value="k" /> ...<br>
</form>
<?php
}
else
{
$c=$_GET['c'];
if ($c=="g")
print( "...." );
elseif ($c=="h")
print("...");
elseif ($c=="i")
print ("...");
elseif ($c=="j")
print( "...." );
elseif ($s=="k")
print( " ..." );
}
}
print( "$match" );
?>
</body>
</html>
<?php ?> <html> <head> <title>Love Calculator</title> <STYLE TYPE="text/css"> <!-- BODY, P {color: black; font-family: verdana; font-size: 10 pt} H1 {color: black; font-family: arial; font-size: 12 pt} --> </STYLE> </head> <body> <?php $u=$_GET['u']; $other=$_GET['other']; if ($u_1 > 8) { print( "Wat is dat nou weer voor naam?" ); } if ($o_1 > 8) { print( "Wat is dat nou weer voor naam?" ); } if ($other=="kasper") print( "Don't use my name!" ); if ($u=="kasper") print( "Zo heet je helemaal niet." ); if ($u_1/$o_1 < 0,5) $match="Zou je wel willen hè $u, wie wilt niet met $other neuken?" ; elseif ($u="daniel" or $u="daniël") $match="Dit is een alleen hetero calculator. Jammer voor je, $u."; elseif ($u_1/$o_1 < 1) { { ?> <form method="GET" action="love.php> <p>Wil je met haar:</p> <input type="radio" name="c" value="g" /> ...<br> <input type="radio" name="c" value="h" /> ...<br> <input type="radio" name="c" value="i" /> ...<br> <input type="radio" name="c" value="j" /> ..<br> <input type="radio" name="c" value="k" /> ...<br> </form> <?php } else { $c=$_GET['c']; if ($c=="g") elseif ($c=="h") elseif ($c=="i") elseif ($c=="j") elseif ($s=="k") } } ?> </body> </html>
|