alright i'm trying to UPDATE my data but i can't seem to find out what's wrong. i mean... everything is working correctly meaning it doesn't give me any errors, it even redirects me back to the page but nothing changes....
here is my code
PHP Code:
<?php include('connect.php');
$id = $_POST['id']; $setname = $_POST['setname']; $hacker = $_POST['hacker']; $abuser = $_POST['abuser']; $ban = $_POST['ban'];
$Query = mysql_query("UPDATE members SET `setname`='$setname', `hacker`='$hacker', `abuser`='$abuser', `ban`='$ban' WHERE `id`='$id'") or die(mysql_error()); header("Location: tagging.php"); ?>
|