Jump to content

Recommended Posts

Googled for hours and can't find an answer ???

 

I get a "Notice: Undefined offset: 1" warning referring to line 2 in the the code below:

 

/* add domain name to username if whatnot and soforth */
    if (!list($login_host, $other) = split(':', $_SERVER['HTTP_HOST'])) {
      $login_host = $_SERVER['HTTP_HOST'];
    }
    if (!strstr($login_username, '@')) {
      /* strip any leading 'www.' so that only a username is required */
      $login_host = preg_replace('/^www\./i', '', $login_host);
      $login_host = preg_replace('/^webmail\./i', '', $login_host);
      $login_host = preg_replace('/^mail\./i', '', $login_host);
      $login_username .= '@' . $login_host;
    }

 

I did not write the code, just trying to stop the warning. This code snippet is from a webmail redirect page which prevents users from reposting their form data after a successful logout.

 

I'm sure the fix is is to add "isset" somewhere, but I can't figure it out.

 

Can someone help?

Link to comment
https://forums.phpfreaks.com/topic/109286-solved-notice-undefined-offset-1/
Share on other sites

if the item you are splitting does not contain ":" then only one array element is returned. The list() expects 2 at least.

 

error_reporting(E_ALL);
list ($a, $b) = split(':', 'abcde');              // --> undefined index 1

if the item you are splitting does not contain ":" then only one array element is returned. The list() expects 2 at least.

 

error_reporting(E_ALL);
list ($a, $b) = split(':', 'abcde');              // --> undefined index 1

 

Thanks for the reply. :)How do I fix?

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.