This option will reset the home page of this site. Restoring any closed widgets or categories.

Reset

PHP


Page 10 of 17« FirstNext6789101112131415NextLast »

Secure PHP Scripts

Securing your variables In most versions of PHP, you can access the value of a variable before it is initialized. Consider this simple example: if ($password == $the_password) {     $logged_in = 1; } if ($logged_in == 1) {     // secure... (Continue reading)

Tagged with:     

MD5 Function and Unique ID in php

uniqid () function, This function has two parameters we can set. The first is the prefix. This is what will be appended to the beginning of each ID. The second is more_entropy. If this is false or not specified it will... (Continue reading)

Tagged with:                                             

PHP is not executed and source visible

My PHP code is not executed and its source code is visible in the browser instead, what will be the reason, This is just because , you need to open your PHP code blocks with <?php and not just <?.If you use the... (Continue reading)

Tagged with:

Url rewriting examples using .htaccess

Hi here i will explain some URL rewriting magic using .htaccess file. 1)Rewriting user.php?id=12 to user-12.html It is a simple redirection in which .php extension is hidden from the browser’s address bar and dynamic url (containing “?” character) is converted... (Continue reading)

Tagged with:             

Display Tags in wordpress

A very simple method to add the tags on to a wordpress theme.Its pretty simple just add the below lines to the file you want it to appear, prefferably SIDEBAR.PHP.This can be easily done using  wp_tag_cloud(),  Here the smallest means... (Continue reading)

Tagged with:             

Page 10 of 17« FirstNext6789101112131415NextLast »