JackJack Posted March 30, 2006 Share Posted March 30, 2006 Hi Could You Please HelpI Get The ErrorParse error: syntax error, unexpected '<' in /***************************/battlemachines.net/test/rps.php on line 16the code is<?php$computer = rand('rock','paper','scissors');$action = $_POST[action];if ($action == 'rock' && $computer == 'rock') {echo "No one wins";exit; }<a href='rps.php?action=rock'><img src='http://www.battlemachines.net/test/rock.bmp'></a><br><a href='rps.php?action=paper'><img src='http://www.battlemachines.net/test/paper.bmp'></a><br><a href='rps.php?action=scissors'><img src='http://www.battlemachines.net/test/scissors.bmp'></a>?>Thank you for your helpJackJack Link to comment https://forums.phpfreaks.com/topic/6197-error/ Share on other sites More sharing options...
ober Posted March 30, 2006 Share Posted March 30, 2006 [b]DO NOT PM MEMBERS ABOUT YOUR THREADS WHEN YOU JUST POSTED THEM.[/b] Link to comment https://forums.phpfreaks.com/topic/6197-error/#findComment-22371 Share on other sites More sharing options...
Honoré Posted March 30, 2006 Share Posted March 30, 2006 [!--quoteo(post=360090:date=Mar 30 2006, 08:42 PM:name=JackJack)--][div class=\'quotetop\']QUOTE(JackJack @ Mar 30 2006, 08:42 PM) [snapback]360090[/snapback][/div][div class=\'quotemain\'][!--quotec--]Hi Could You Please HelpI Get The ErrorParse error: syntax error, unexpected '<' in /***************************/battlemachines.net/test/rps.php on line 16[/quote]Try[code]<?php$computer = rand('rock','paper','scissors');$action = $_POST[action];if ($action == 'rock' && $computer == 'rock') {echo "No one wins";exit; }?><a href='rps.php?action=rock'><img src='http://www.battlemachines.net/test/rock.bmp'></a><br><a href='rps.php?action=paper'><img src='http://www.battlemachines.net/test/paper.bmp'></a><br><a href='rps.php?action=scissors'><img src='http://www.battlemachines.net/test/scissors.bmp'></a>[/code] Link to comment https://forums.phpfreaks.com/topic/6197-error/#findComment-22377 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.