Why Wordpress? Wordpress Features Make WordPress Rocks!

WordPress being fastest growing CMS. Accordding estimate thosunds of new sites being developed world wide daily in the top 10 million websites. WordPress being the blogging platform employed by all of the bloggers by themselves domain. Some use other blogging software as well, but WordPress is most popular. The explanation for so much popularity of WordPress is nothing other compared to the distinguishing...
Share:

Hit counter

A hit counter will let us know how many times a page is accessed. In case one visitors loads the page several times, the hit counter will increase several times (but this is likely to happen only a few times). The code for the hit counter bellow will save the number of hits in a file named counter.txt (the name of this file may be changed). Each time the page is loaded, the file will be read, the...
Share:

Generate Php Form for mailing

 In this tutorial explain about 'How make mail form in Php?'. First of all you need a form, as for example the one in the table: Form.html  <FORM ACTION="formtomail.php" METHOD=post> <!-- Your fields here --> <INPUT TYPE=submit value="Submit"> </FORM>  The Form Action must be directed to the PHP script bellow. you need the php script (copy the information...
Share:

Insert Data Using Php Mysql

For this, you are going to need to login to a MySQL server administration, such as ‘phpmyadmin‘. Contact your server host for more details. Copy and paste the follow MySQL code into your query panel. This show generate a database table called ‘my_table‘. CREATE TABLE `my_table` ( `id` int(6) NOT NULL auto_increment, `name` varchar(255) NOT NULL default ”, `email` varchar(255) NOT NULL...
Share:

Display Mysql data using Php Tutorial

Our First tutorial based on Display data from mysql table. Using PHP you can run a MySQL SELECT query to fetch the data out of the database. You have several options in fetching information from MySQL. PHP provide several functions for this. The first one is mysql_fetch_array()which fetch a result row...
Share: