kbannon wrote: Are the === intentional? [edit: doh - sure this means identical]
marcphisto wrote: Hi, [php] ... $username = $_POST; $password = $_POST; ////////////////////////////// // update players details $sql = "update players set name = '$name', address = '$address', phone = '$phone', fax = '$fax', email = '$email', username = '$username', password = '$password' where id = '$id'"; [/php] No! Wrong! Bad! Don't do this! Haven't you ever heard of SQL injection?!