Home PHP

Relevant sites

PHP
Create HTML Form to insert data into MySql database using PHP PDF E-mail
Tuesday, 07 July 2009 17:07

This article explains data insertion in MySql using HTML Form. You must have seen contact/feedback Forms in many websites. These Forms are designed using standard HTML Form elements. On the back end, SQL queries are used to perform DML operation using information provided by user. Any server side scripting language can be used to insert data in database. Following steps explain this process using PHP and MySql.

1-     First of all create a table in MySql database using following command. This command can be executed in any MySql query browser like phpMyAdmin.

 

CREATE TABLE contact (

msg_id int(11) not null auto_increment,

name varchar(255) NOT NULL ,

email varchar(255),

msg varchar(2000) NOT NULL,

PRIMARY KEY (msg_id))

 

Last Updated on Tuesday, 07 July 2009 18:03
Read more...
 
Configure PHP on IIS PDF E-mail
Thursday, 26 February 2009 08:09

Configuration of PHP on IIS includes following steps. This guide provides configuration about IIS 5.1 shipped with Window XP sp2.

1- Download latest version of PHP from http://www.php.net/downloads.php. Note you should download installer version not the zip version. Installer version automatically performs all necessary configurations. If we use zip version, Environmental variables must be modified manually

2- Run the setup and choose installation directory for example C:\PHP

3- On next screen choose your version of web server, here choose IIS ISAPI and click next.

Last Updated on Sunday, 07 June 2009 16:47
Read more...
 
Retrieving Data from MySql into HTML Table Using PHP PDF E-mail
Thursday, 24 July 2008 06:36

In last article I explained how to make a connection to MySql server and how to create a MySql database using PHP. This article is continuation of last article.

Last Updated on Friday, 31 July 2009 07:45
Read more...
 
Connecting to MySql Server Using PHP PDF E-mail
Friday, 11 July 2008 05:03

PHP provides several functions to perform DML operation on MySql database. These functions allow to establish connection, retrieve data and update existing data. Some of the most commonly used functions are

Last Updated on Sunday, 07 June 2009 16:44
Read more...
 
PHP Structure and Syntax PDF E-mail
Tuesday, 17 June 2008 12:20

PHP program can be written in any text editor like notepad. For beginners it recommended that they should start coding in text editor. This gives them more understating of the language.

Last Updated on Monday, 16 March 2009 12:23
Read more...
 
«StartPrev12NextEnd»

Page 1 of 2