xonnaddo Posted February 4, 2013 Share Posted February 4, 2013 Estou com esses erros no meu site, oque é??? Notice : Undefined index: poll in C:\Users\Sandro\Desktop\USBWebserver v8.5\8.5\root\Portal\inc\poll.php on line 3 Notice : Undefined index: result in C:\Users\Sandro\Desktop\USBWebserver v8.5\8.5\root\Portal\inc\poll.php on line 10 Notice : Undefined variable: poll_id in C:\Users\Sandro\Desktop\USBWebserver v8.5\8.5\root\Portal\inc\poll.php on line 10 Notice : Undefined index: voted in C:\Users\Sandro\Desktop\USBWebserver v8.5\8.5\root\Portal\inc\poll.php on line 10 Notice : Undefined variable: poll_id in C:\Users\Sandro\Desktop\USBWebserver v8.5\8.5\root\Portal\inc\poll.php on line 17 Warning : mysql_num_rows() expects parameter 1 to be resource, boolean given in C:\Users\Sandro\Desktop\USBWebserver v8.5\8.5\root\Portal\inc\poll.php on line 18 Quote Link to comment https://forums.phpfreaks.com/topic/274027-undefined-index/ Share on other sites More sharing options...
Christian F. Posted February 4, 2013 Share Posted February 4, 2013 In English, please? This is an English-speaking community, after all. Thank you. In any case an "undefined index" means that you're trying to reference an array key, which has not been set yet. The proper way to fix these messages, is by checking if the key isset () before trying to use its value. Like this: // Test data $test = array ("Exists" => true); // Gives an undefined index. echo $test['not']; // Test first. if (isset ($test['not')) { // No message, and no warning. echo "You won't see this."; } else { echo "Index 'not' is not set."; } Quote Link to comment https://forums.phpfreaks.com/topic/274027-undefined-index/#findComment-1410114 Share on other sites More sharing options...
xonnaddo Posted February 5, 2013 Author Share Posted February 5, 2013 (edited) more where I think the error in the script from my site? 8,5 \ root \ Portal \ inc \ poll.php na linha 3 Edited February 5, 2013 by xonnaddo Quote Link to comment https://forums.phpfreaks.com/topic/274027-undefined-index/#findComment-1410127 Share on other sites More sharing options...
Christian F. Posted February 5, 2013 Share Posted February 5, 2013 I'm afraid I don't understand. What are you wondering about? PS: When asking for help on your PHP code it's also recommended to post the part of the code that you're having trouble with, using the tags around it. Quote Link to comment https://forums.phpfreaks.com/topic/274027-undefined-index/#findComment-1410129 Share on other sites More sharing options...
xonnaddo Posted February 6, 2013 Author Share Posted February 6, 2013 C:\wamp\www\Portal\inc\poll.php on line 10 ?? Quote Link to comment https://forums.phpfreaks.com/topic/274027-undefined-index/#findComment-1410368 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.