vote up 1 vote down star
1

I have this code and it's giving me an undefined error if country is not a variable in the URL. I've never had this problem before so it's obviously something to do with server settings but I'd rather not change those because this is probably done for security purposes. I've searched Google and can't find the workaround, although I'm sure it's blindingly obvious!

$country = $_GET['country'];

    if(!$country){
        $incoming = $outgoing = $sms = $free = "---";
    } else {
        get_rates($country);
    }
flag

5 Answers

vote up 10 vote down check

you should use the following approach:

if (!isset($_GET['country'])) {
    $incoming = $outgoing = $sms = $free = "---";
} else {
    get_rates($_GET['country']);
}
link|flag
1  
Actually, I think you want if(!isset(...)) { – Thomas Owens Jul 16 at 11:43
sure, that was typo. Thanks Thomas – SilentGhost Jul 16 at 11:44
And fixed. +1. :) – Thomas Owens Jul 16 at 11:44
You are missing a closing ']' bracket in the if statement – Shoan Jul 16 at 12:37
thanks Shoan, I should be getting more sleep %) – SilentGhost Jul 16 at 13:24
vote up -6 vote down

Just change:

$country = $_GET['country'];

To this:

$country = @$_GET['country'];

'@' is an operator which will remove errors output.

link|flag
7  
that's the worst piece of advice one could give – SilentGhost Jul 16 at 11:40
In this case it's ok because there's a check just after. – FWH Jul 16 at 11:41
using @ error supressor is quite a stinky code smell, read about code smells on SO – tharkun Jul 16 at 11:42
@ is never okay. – deceze Jul 16 at 11:42
vote up 3 vote down

isset allows you to check if the variable exists (if not we give it the value false).

$country = isset($_GET['country'])?  $_GET['country'] : false;
link|flag
vote up 1 vote down

"Undefined index" means that element doesn't exist in the array. Your server is probably set to report these errors, while your system so far wasn't. Check if the element exists before accessing it.

$country = null;
if (!empty($_GET['country']) {
    $country = $_GET['country'];
}
link|flag
vote up 1 vote down

You should probably check to see if $_GET['country'] is set. I would wrap the entire code block you posted in an if statement that checks if the country field is set, using the isset function.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.