dean7 Posted July 13, 2010 Share Posted July 13, 2010 Hi all, im having trouble with my php script. It has an error saying : Notice: Undefined index: race in /home/www/*****-*****.com/hts2.php on line 93. So im guessing the undefined index is when there is something wrong with the $_GET function? If it is i couldnt see what was wrong with my script. if ($_GET['race']){ // Line 93 $racer = $_GET['race']; if ( $racer == 'chris' ) { $raced = "Chris"; $speeds = "20"; $ra = "1"; $nextrace = time()+120; $reps = rand(500,1200);$fuel = rand(5,12); $mns = rand(200,1500);} Can anyone else see whats wrong with it? Thanks. Link to comment https://forums.phpfreaks.com/topic/207585-undefined-index-error/ Share on other sites More sharing options...
bh Posted July 13, 2010 Share Posted July 13, 2010 you should check your value. if $_GET['race'] doesnt exists... if (isset($_GET['race'])){ // Line 93 $racer = $_GET['race']; Link to comment https://forums.phpfreaks.com/topic/207585-undefined-index-error/#findComment-1085260 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.