ComputerGeek

ComputerGeek


Find second and fourth saturday's of the month in PHP-MySql

Posted: 08 Jul 2014 10:55 PM PDT

Find second and fourth saturday's of the month in PHP-MySql In this section, I have created simple script in PHP to find second(2nd) and fourth(4th) Saturday of the month. <?php // Mysql Connection $conn = mysql_connect('localhost','root',''); if (!$conn) { die('Could not connect to MySQL: ' . mysql_error()); } echo 'Connection OK'; mysql_close($conn); // Select Database mysql_select_db("


Post a Comment