Featured Posts

என்ன தான் இருக்கிறது ChromeOSல்?என்ன தான் இருக்கிறது... முதலாவதாக இப்போது கிடைக்கும் க்ரோம் பதிப்பு ஒரு முழுமையான பதிப்பு அல்ல. ஆல்பா...

Readmore

கூகுல் $750 மில்லியன் கொடுத்து வாங்கப்படும் பள்ளி மாணவனால் உருவாக்கப்பட்ட நிறுவனம்.கூகுல் $750 மில்லியன்... கூகுள் நிறுவனம் $750 மில்லியன் டாலர் விலைக்கு AdMob என்ற மொபைல் விளம்பர சேவை நிறுவனத்தை...

Readmore

Google Wants No Competitors Google Wants No Competitors இன்று பலரும் MicroSoft நிறுவனத்தை பெரிதும் விரும்பாமல் இருக்கக் காரணம், அந்த நிறுவனம்...

Readmore

Story of an IT Project "ஏம்பா இந்த கம்ப்யூட்டர் படிச்சவங்க எல்லாம் நிறைய சம்பளம் வாங்கிட்டு, பந்தா...

Readmore

லேப்டாப் வாங்கும் முன் கவனிக்க வேண்டியவைகள்லேப்டாப் வாங்கும் முன்... எடை: தாங்கள் அடிக்கடி பயணம் செய்பவர் என்றால் எடை குறைந்த அளவு இருக்குமாறு...

Readmore

  • Prev
  • Next

Simple Login form & My Account Area in PHP

Posted on : 08-11-2009 | By : Karthik | In : PHP Tutorial

0

Step 1:

Download the script and extract them into your document root.

Your document root may be C:\wamp\www\myweb

Step 2:

Make sure you have created a mysql database & members table

Step 3:

Visit: http://localhost/myweb/login.html

Part 1


Part 2




Creating a MySQL Table in PHPMyAdmin

Posted on : 08-11-2009 | By : Karthik | In : PHP Tutorial, Tutorials

1

I hope you know how to install Apache, PHP, MySQL . Now, You are going to create your first MySQL database table for storing username, password & email of members.

SQL Query to create a mysql table

CREATE TABLE `myweb`.`members` (
`id` INT( 12 ) NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`username` VARCHAR( 16 ) NOT NULL ,
`password` VARCHAR( 16 ) NOT NULL ,
`email` VARCHAR( 100 ) NOT NULL
) ENGINE = MYISAM ;

PHP Dynamic Contact Form

Posted on : 14-09-2009 | By : Karthik | In : PHP Tutorial, Tutorials

0

How to create a dynamic PHP contact form that sends email to website owner once a visitor fillup a contact form and hits submit button. Tutorial in Tamil

How to Upload a File in PHP

Posted on : 24-07-2009 | By : Karthik | In : PHP Tutorial, Tutorials

0

Email Verification Link in PHP – Part1

Posted on : 17-07-2009 | By : Karthik | In : PHP Tutorial, Tutorials

0

How make “Email Verification link” in PHP. Learn the basics.