Search found 4 matches
- Mon Jun 28, 2010 11:05 am
- Forum: Coding
- Topic: i have a problem with case sensitive, login page.
- Replies: 5
- Views: 1411
Re: i have a problem with case sensitive, login page.
here is the login.php, i did another tut, not in this site... <?php session_start(); $username = $_POST['username']; $password = $_POST['password']; strtolower($username == "username"); if ($username&&$password) { $connect = mysql_connect("localhost","root",&quo...
					- Mon Jun 28, 2010 4:09 am
- Forum: Coding
- Topic: some questions about CAP image verification.
- Replies: 4
- Views: 917
Re: some questions about CAP image verification.
can you change the code i gave and please post it here?
					- Mon Jun 28, 2010 2:45 am
- Forum: Coding
- Topic: i have a problem with case sensitive, login page.
- Replies: 5
- Views: 1411
i have a problem with case sensitive, login page.
if i register with user name and password like this:
John
123456
when i log in, if i do john, it doesn't let me log in and it says "wrong password", although its wrong username.
can you please help me?
					John
123456
when i log in, if i do john, it doesn't let me log in and it says "wrong password", although its wrong username.
can you please help me?
- Mon Jun 28, 2010 2:44 am
- Forum: Coding
- Topic: some questions about CAP image verification.
- Replies: 4
- Views: 917
some questions about CAP image verification.
first, here is my cap php code: session_start(); header("Content-type: image/png"); $im = @imagecreate(110, 40) or die("Cannot Initialize new GD image stream"); $background_color = imagecolorallocate($im, 255, 255, 255); $text_color = imagecolorallocate($im, 33, 25, 57); $rand = ...