Support Forums - Classified Ads Script Osclass
Osclass theme support => Veronika Osclass Responsive Theme => Topic started by: siken on August 24, 2018, 07:14:11 PM
-
Hello, what is the code to specify the publications of more than 15 days ?. I wanted to put a brand and use the typical IF, but I do not know how to specify publications that have more than 15 days. Thanks in advance...
for example:
<?php if osc_format_date(osc_item_pub_date() >15 ) { ?>
here more than 15 days
<?php } ?>
-
@alex
Check this:
https://stackoverflow.com/questions/1940338/date-difference-in-php-on-days
-
buufff... datetime.dif
-
Error again...
<?php
$date1=osc_item_pub_date();
$date2=date_create("now");
$diff=date_diff($date1,$date2);
?>
<?php if($diff >15) { ?>
more 15 days
<?php } else { ?>
less 15 days
<?php } ?>
-
@alexandromt
https://www.google.sk/search?source=hp&ei=2D2BW7u5DOuBrwTIs7HABg&q=php+date+difference&oq=php+date+difference&gs_l=psy-ab.3..35i39k1j0i203k1l9.487.5228.0.5313.28.21.3.0.0.0.265.2179.0j13j2.15.0....0...1c.1.64.psy-ab..10.18.2188.0..0j0i67k1j0i131k1j0i10k1j0i22i10i30k1.0.2fSHlqDgpc0
I've found about 14 600 000 of results...
-
I'm sorry but I'm not able to deal with the code, if someone can help, I appreciate it ...