Detected 1 occurrence(s) of ‘\| (user|username|login|password|email|uid) \|’: # table accounts id | username | password # table posts id | posterid (this is the player id) | message # table players id | account_id | name function can_we_edit_post($pid) { global $db; // Let's see if they have permission to edit $stmt = $db->prepare("SELECT * FROM […]
↧