Jump to content

Recommended Posts

Hi All,

   

      I have an list of dates stored in $dates array, I wanted to add 1 year to each date in the array and i use the following code.

    for($i=0;$i<4;$i++)

      {

          $temp=$dates[$i];

            echo($temp);

            $firstreviewdate[$i]=strtotime(date("YYYY-mm-dd", strtotime('$temp')) . " +1 year");

            echo "Date After adding one year: ".date('l dS \o\f F Y', $firstreviewdate)."<br>";

            unset($temp);

      }

 

I get this error

 

    Technical information

Error type 2

Error description date() expects parameter 2 to be long, array given

 

 

  Please let me know wht error i am doing here.

 

 

 

Thank you MrAdam,

 

                      I can see the output now, but when i try to insert the date into the database it is giving me 0000-00-00.

 

  Insert into Dates Values("$firstreviewdate");

 

  I can see in the database 0000-00-00

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.