how can i get date of last tuesday?
how can ig et the date of the 5th of month?
how can i get the date of first fridya?
thansk
Printable View
how can i get date of last tuesday?
how can ig et the date of the 5th of month?
how can i get the date of first fridya?
thansk
how can you not learning anythign if you don't read the manual
look up strtotime();
Use the strtotime() function:Quote:
Originally posted by php_n00b
how can i get date of last tuesday?
Code:<?php
echo "Last Tuesday: " . date('m-d-Y', strtotime("last tuesday"));
?>
Huh?Quote:
Originally posted by php_n00b
how can ig et the date of the 5th of month?
Code:<?php
echo "Fifth of the month: " . date('m-d-Y', strtotime("04-05-03"));
?>
Again, strtotime():Quote:
Originally posted by php_n00b
how can i get the date of first fridya?
Code:<?php
echo "First Friday: " . date('m-d-Y', strtotime("first friday"));
?>
I suggest you go to these sites and read them:Quote:
Originally posted by php_n00b
thansk
http://www.php.net/manual/en/function.date.php
http://www.php.net/manual/en/function.strtotime.php
If English isn't your native language, which I suspect it isn't, they have the manual available in a wide variety of tongues.