Skip to main content

Posts

Showing posts from May, 2014

some useful links

http://mrbool.com/  its useful link for learningXML http://dev.mysql.com/doc/refman/5.1/en/storage-engine-compare-transactions.html its good for learning about mysql DB http://www.phpf1.com/tutorial/get-current-page-url.html its useful link for get_currnt-page on the url

Pagination

pagination  http://www.webdesignrazzi.com/2014/45-free-css3-jquery-pagination-plugins/ pagination with grid http://www.trirand.com/blog/phpjqgrid/examples/loading_data/million_sql/default.php

how to hide the extention of the programing lanuages

How to remove .php, .html, .htm extensions with .htaccess I recently wanted to remove the extensions from my website, in order to make the URLs more user and search engine friendly. I stumbled across tutorials on how to remove the .php extension from a PHP page. What about the .html ? I wanted to remove those as well! In this tutorial I’ll show you how to do that easily, by editing the .htaccess file. What is an .htaccess file An .htaccess file is a simple ASCII file that you create with a text editor like Notepad or TextMate. It provides a way to make configuration changes on a per-directory basis. Please note that .htaccess is the file’s extension. It isn’t file.htaccess , it is simply .htaccess . .htaccess files affect the directory in which they are placed and all sub-directories. For example if there is one .htaccess file located in your root directory of yoursite.com, it would affect yoursite.com/content/, yoursite.com/content/images/, etc. It is impo...