Significance Of PHP To Blog And Website Development

PHP is a standout amongst the most admired and famous server-side scripting languages which are generally utilized for making websites. With speedier pivot time, upgraded security and reasonableness, PHP has turned out to be favored decision of the website developers. Because of plenty of advantages of this scripting language, numerous popular online organizations, for example, […]

Date range in PHP

Date and time values are very essential in PHP as there are different time formats, time zones, daylight saving offsets. By carefully with the date inputs you can format output however you like. In the below function you can get range of dates: function date_range( $start, $end, $step = ‘+1 day’, $format = ‘Y/m/d’ ) […]

PHP Force Download

A force download script in PHP can give you more control over a file download rather than providing a direct link. Using a force-download script, you can: Validate whether a user is logged in Track total number of download <?php function force_download( $file, $new_name=”filename.doc” ) { $dir = “”; if ((isset($file))&&(file_exists($dir.$file))) { header(‘Content-type: application/force-download’); header(‘Content-Disposition: […]