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

Title: IF publications of more than 15 days
Post 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:

Code: [Select]
<?php if osc_format_date(osc_item_pub_date() >15 ) { ?>

here more than 15 days

<?php ?>
Title: Re: IF publications of more than 15 days
Post by: MB Themes on August 24, 2018, 09:19:06 PM
@alex
Check this:
https://stackoverflow.com/questions/1940338/date-difference-in-php-on-days
Title: Re: IF publications of more than 15 days
Post by: siken on August 24, 2018, 09:56:00 PM
buufff... datetime.dif
Title: Re: IF publications of more than 15 days
Post by: siken on August 25, 2018, 12:27:11 AM
Error again...

Code: [Select]
<?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 ?>
Title: Re: IF publications of more than 15 days
Post by: MB Themes on August 25, 2018, 01:31:15 PM
@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...
Title: Re: IF publications of more than 15 days
Post by: siken on September 05, 2018, 03:24:04 AM
I'm sorry but I'm not able to deal with the code, if someone can help, I appreciate it ...