Jump to content

Unable to Add 1 Year to Date Stored in an Array


surajkandukuri

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.