Hallo,
Möchte wenn jemand in die Usersuche zb test eingibt und in der DB aber Test steht das er auf Test geleitet wird und nicht auf test.
hier der code irgendwie klappt das nciht
Möchte wenn jemand in die Usersuche zb test eingibt und in der DB aber Test steht das er auf Test geleitet wird und nicht auf test.
hier der code irgendwie klappt das nciht
PHP:
<?php
session_start();
include "mysql.php";
$wer = addslashes($_POST['usersuche']);
$_POST['usersuche'] = addslashes($_POST['usersuche']); // make sure people can't hack the db by entering '" MySQL QUERY HERE as the username
$userrow = mysql_query("SELECT * FROM `userdb` WHERE `username` LIKE '" . $_POST['usersuche'] . "';",$mysql);
if(mysql_num_rows($userrow) != "1"){
// no rows found, wrong password or username
header("Location: error_user.php?name=$wer");
} else {
// 1 row found exactly, we have the user!
$udata = mysql_fetch_array($userrow);
header("Location: viewprofile.php?name=$udata'['usersuche']'");
}
?>