Its a technique i just used to improve ma typing speed . Make you password somthing like this !!! Funny na Try yourself and give your comments
Its a technique i just used to improve ma typing speed . Make you password somthing like this !!! Funny na Try yourself and give your comments
<?php include(‘includes/database.php’); //this is to execute the query /** * @author ["Arun Raj R , Software Engineer "] * @copyright 2008 */ if (isset($_REQUEST['page'])) { $page = $_REQUEST['page']; if($page==” || $page<1) $page=1; } else { $page=1; } $start_from =($page-1) *…
The default windows distribution of PHP comes with GD. So enabling the GD extension should be as simple as opening your php.ini file and uncommenting the necessary line. So this line: Code: ;extension=php_gd2.dll Should look like this (Remove the preceeding…
How to create thumbnails ( Logic ) How to create thumbnails ? To generate thumbnails we do the following: Scan a folder for JPG and PNG files (gd does not support GIF anymore, because the packing algorithm in GIF is…