Blog Archives

How to improve your typing speed ?

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

Tagged with: , ,
Posted in Fun and Refreshment, Misk

How to Display records page by page ? or how to do pagination using php and my sql

<?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) *

Tagged with: , , ,
Posted in Misk

How to install /configure GD library for PHP 5 on appache / windows xp ?

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

Tagged with: ,
Posted in Misk

How to create thumbnails ( Logic ) in PHP

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

Tagged with: , , ,
Posted in Misk