Ok I have this code I found that I think will work with what I need. I need it to add 2 days to the current date.
<? $newdate = mktime(0, 0, 0, date("m") , date("d")+2, date("Y")); ?>
<? echo "$newdate"; ?>
But it's echo'ing this: 1152939600 <-- makes no sense
What am I missing here...
I have a variable that is passed via $_POST[FirstName] from apage2.php to it'self and now I do some edits to that page and submit that to apage3.php but the variable doesn't come across to the next page...how come?
Example:
db query to get firstname in a form then using the post method I...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.