Top 6 Ways for Developing the Best On Demand Food Delivery Apps

There is absolutely no contradiction about the fact that on demand food delivery apps are a boon for food lovers. Such apps have totally eradicated the need for performing hysterical jobs of searching for good restaurants with divine food to satiate your taste buds. Now, you can easily browse through the comprehensive menus of various […]

Display PDF in browser via PHP

Sometimes it is required to hide the actual PDF file name for security reason. So using a webpage you can display PDF in browser without knowing the actual URL. Example source: <?php $file = ‘path-to-pdf-file/myFile.pdf’; $filename = ‘download.pdf’; header(‘Content-type: application/pdf’); header(‘Content-Disposition: inline; filename=”‘ . $filename . ‘”‘); header(‘Content-Transfer-Encoding: binary’); header(‘Accept-Ranges: bytes’); @readfile($file); ?> Save this […]