http://akkassia.soinet.net/guest
Have a look at it, and give me some advice~!
Here's my codes.
MySQL Connection & Functions
lib.php
All the Output Codes
index.php
All the Input Codes
do.php
Have a nice
Moderator: General Moderators
Code: Select all
<input type="text" name="username">Code: Select all
//in version prior to 4.1 you could do this:
if ($username != "") {
....
}
//in versions greater than 4.1 you need to do this:
if ($_POSTї'username'] {
....
}Code: Select all
//this will send the client browser to www.disney.com
header("Location: http://www.disney.com");