Jump to content

need help with sql query...


gtridez

Recommended Posts

hey...

i'm tryin to query something in a mysql table ...
i'm searchin a table to find a username where the user name is "Myuser" ...ie the first letter is upper case
It only returns a result if i type "Myuser" in the form and not "myuser" ...
the colation of the field is latin1_swedish_ci

the code is as below...
any help will be greatly appreciated...thanx

[code]include("includes/connect_gtriderz.php");
$sql = "SELECT * FROM members WHERE username='$username'";
$query = mysql_query($sql);

while ($row = mysql_fetch_array($query)) {
$dbUser = $row['username'];

if($dbUser == $username) {
$errmsg = "We're sorry but the username <b><i>$username</i></b> already exists, please use another one ...";
$error = "yes";
$username = '';
}
}
include("includes/closeDb.php");[/code]
Link to comment
https://forums.phpfreaks.com/topic/19104-need-help-with-sql-query/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.