Welcome Guest, Not a member yet? Register   Sign In
error Undefined offset, how is fix it?
#1

[eluser]SaSa[/eluser]
what is this error?
Code:
A PHP Error was encountered
    Severity: Notice    
    Message: Undefined offset: 2  
    Filename: admin/tour.php    
    Line Number: 59
    
    A PHP Error was encountered    
    Severity: Notice    
    Message: Undefined offset: 1    
    Filename: admin/tour.php    
    Line Number: 59

    0
my codes:

Code:
function autocomplete_datego(){
            if($this->session->userdata('logged_in')) {
            $date_go = $this->input->post('date_go');
            $jdate = jgmdate("Y/m/j");
            list($year_now, $month_now, $day_now) = explode('/', $jdate, 3);

    //////////////////////////////// line 59 ///////////////
            list($year, $month, $day) = explode('/', $date_go, 3); // line 59
    //////////////////////////////// end line 59 ///////////////

            if($year>=$year_now && $month<=12 ) {
                $j2g = $this->convert_date->JalaliToGregorian($year, $month, $day);
                echo $j2g[0]."/".$j2g[1]."/".$j2g[2];
            }else {
                echo '0';
            }
            }
        }


Messages In This Thread
error Undefined offset, how is fix it? - by El Forum - 08-04-2011, 08:10 AM
error Undefined offset, how is fix it? - by El Forum - 08-04-2011, 10:17 AM
error Undefined offset, how is fix it? - by El Forum - 08-04-2011, 02:27 PM
error Undefined offset, how is fix it? - by El Forum - 08-04-2011, 04:21 PM
error Undefined offset, how is fix it? - by El Forum - 08-04-2011, 07:13 PM
error Undefined offset, how is fix it? - by El Forum - 08-04-2011, 11:04 PM



Theme © iAndrew 2016 - Forum software by © MyBB