Onbekend |
|
hij zegt altijd hetzelfde ook als de plaatje anders zijn
echo "<table width='100%' style='BORDER-RIGHT: #000000 1px solid; BORDER-TOP: #000000 1px solid; BORDER-BOTTOM: #000000 1px solid; BORDER-LEFT: #000000 1px solid' cellspacing='0' cellpadding='4'><font face=Verdana size=1>";
echo "<tr><td width='10%' bgcolor='#242424'><b>Fruitmachine</b></td></tr>";
echo "<tr><td valign='top'>";
echo "<table><tr><td valign='top'>";
$sql = mysql_query("SELECT cash from leden WHERE id='".$cookie_id."'");
$query = mysql_fetch_assoc($sql);
$kans = rand(1, 7);
if($_POST['submit']){
if($query[cash] < '200'){
die("Je hebt niet genoeg geld om in de fruitmachine te steken.");
}
$rand1 = rand(1,9);
$rand2 = rand(1,9);
$rand3 = rand(1,9);
Echo'<TR>
<TD width="20%"><div align="center"><b>Foto 1</b></div></TD>
<TD width="20%"><div align="center"><b>Foto 2</b></div></TD>
<TD width="20%"><div align="center"><b>Foto 3</b></div></TD>
</TR>';
echo"<tr><td>";
echo"<img src='images/".$rand1.".gif'>";
echo"</td><td>";
echo"<img src='images/".$rand2.".gif'>";
echo"</td><td>";
echo"<img src='images/".$rand3.".gif'>";
echo"</td></tr>";
if($rand1 = $rand2 = $rand3){
echo"hetzelfde";
}elseif(($rand1 = $rand2) OR ($rand2 = $rand3) OR ($rand1 = $rand3)){
echo"iets anders";
}else{
echo"alles anders";
}
}
echo"<form method='post'>";
echo"Je kan natuurlijk als je krap bij kas gaan gokken in de fruitmachine<br>
Je kan zo vaak proberen als je wilt<br>
Het kost 200 per poging<br>
Als je wint win je 2500<br>
Je hebt 1 kans op 7<br>
<u>veel success</u>";
echo "<td width='15%'></td>";
echo"</td></table>";
echo "</td><tr><td style='BORDER-TOP: #000000 1px solid' align='right' bgcolor='#242424'>";
echo "<input type='submit' name='submit' value='Probeer'>";
echo "</td></tr></table>
</form>";
echo "<table width='100%' style='BORDER-RIGHT: #000000 1px solid; BORDER-TOP: #000000 1px solid; BORDER-BOTTOM: #000000 1px solid; BORDER-LEFT: #000000 1px solid' cellspacing='0' cellpadding='4'><font face=Verdana size=1>"; echo "<tr><td width='10%' bgcolor='#242424'><b>Fruitmachine</b></td></tr>"; echo "<tr><td valign='top'>"; echo "<table><tr><td valign='top'>"; $sql = mysql_query("SELECT cash from leden WHERE id='".$cookie_id."'"); if($_POST['submit']){ if($query[cash] < '200'){ die("Je hebt niet genoeg geld om in de fruitmachine te steken."); } <TD width="20%"><div align="center"><b>Foto 1</b></div></TD> <TD width="20%"><div align="center"><b>Foto 2</b></div></TD> <TD width="20%"><div align="center"><b>Foto 3</b></div></TD> </TR>'; echo"<img src='images/".$rand1.".gif'>"; echo"<img src='images/".$rand2.".gif'>"; echo"<img src='images/".$rand3.".gif'>"; if($rand1 = $rand2 = $rand3){ }elseif(($rand1 = $rand2) OR ($rand2 = $rand3) OR ($rand1 = $rand3)){ }else{ } } echo"<form method='post'>"; echo"Je kan natuurlijk als je krap bij kas gaan gokken in de fruitmachine<br> Je kan zo vaak proberen als je wilt<br> Het kost 200 per poging<br> Als je wint win je 2500<br> Je hebt 1 kans op 7<br> <u>veel success</u>"; echo "<td width='15%'></td>"; echo "</td><tr><td style='BORDER-TOP: #000000 1px solid' align='right' bgcolor='#242424'>"; echo "<input type='submit' name='submit' value='Probeer'>"; </form>";
|