When I saw the title of this I thought you meant like real money online, not GTA and instantly thought "Inb4wannabehack" & "Cheap Bastard". I was mislead. :oops:
He could have a dictionary for room furniture so it'd still place the furniture into that dictionary but then not load from the database once they log back in if it's not in the database lmao.
You don't inspect element to get the html, you view the source and code the needed API's, otherwise it's just going to be the style. Without the js/json it's pointless and not as unique.
function filter($var)
{
return mysql_real_escape_string(stripslashes(htmlspecialchars($var)));
}
Basically, the Escape string is there to stop people putting stuff like:
'; UPDATE `users` SET `rank` = '99'
The rest is there to stop html etc, so people can't put script tags, etc for...
Just a few tips for future reference;
1) Don't use SQL queries so much, cache/store not so important things.
2) If you're going to run queries clean them up e.g, "SELECT `1`,`2` FROM `table` WHERE `1` = 'whatever'; LIMIT 1"
3) If you're grabbing a row from a table, there's no point using...