QUOTE(JBrace1990 @ 24 Aug, 2008 - 07:49 AM)

http://www.learntoplayslotmachines.com/payouts.htmok, couple of things here....
1. this line, is too long...
if((($one == 0) && ($two == 0 || $three == 0)) && ($one == $two || $one == $three || $two == $three))... you don't need the extra end of that (ie: $one == $two)... you already check that they all equal the same thing...
2. you're missing your { and }... add them in...
3. this line:
echo $bet*3; will NEVER activate... the elseif is the exact same as the if, and the if comes first...
4. one again, this is all extra:
&& ($one == $two || $one == $three || $two == $three) also the first line
CODE
if((($one == 0) && ($two == 0 || $three == 0)) && ($one == $two || $one == $three || $two == $three))
is only if 2 of the slots are the same so the next one
CODE
elseif ($one == 0 && $two == 0 && $three == 0)
is only if al three are the same
{ and } as far as im aware is the same as &&