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: […]

CakePHP interview questions and answers

CakePHP  is a free, open-source, rapid development framework for PHP. It’s a foundational structure for programmers to create web applications. There is number of in built component like Ajax, RequestHandler, Session etc. Question: What are the drawbacks of cakephp? Answer : The learning curve, and it loads full application before it starts your task. Its […]

What is JSON?

JSON or JavaScript Object Notation is nothing but a text-based human-readable data storing and interchange. Douglas Crockford originally specified the this format. The media for this is application/json and the extension is .json. This is an easier-to-use alternative of XML. The below example shown an student object with an array of 3 records: {“students”:[ {“Name”:”Tim”, […]