Jump to content

Undefined Index


xonnaddo

Recommended Posts

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

Link to comment
Share on other sites

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.";
}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.