[Solved] Can’t run MySQL query with an end of the year check [closed]

$gdate = date(“Y-m-d”, strtotime(‘today’)); if($gdate==date(“Y-m-d”,strtotime(‘last day of december’))){ $queryrun=mysql_query( $query); you were checking with d-m-Y which is wrong. both date format wasn’t same and that the query is not running. and also a closing ) bracket was missing. Note: mysql_query will be deprecated. solved Can’t run MySQL query with an end of the year check … Read more

[Solved] Confused on what’s what because of my teacher. [closed]

Open Css and add background: -o-linear-gradient(bottom, #11577A 0%, #2B729F 100%); in the class of the title. syntax is background: linear-gradient(direction, color-stop1, color-stop2, …); the tags -o- represent the useragent and there are more useragents too like -webkit- -ms- -moz- which are useful in case of chrome, ie, and mozilla firefox respectively. 1 solved Confused on … Read more