Our Scripts Vault contains many game scripts that you can use to create your own game!
Magic quotes is actually deprecated in php v5.3.0. And will be fully removed in php 6.0.0 as it is highly discouraged.
As for negative rollover it was interoduced in MySQL 5-something. If you are using MySQL 4 you are safe (I'm 100% sure of this because I'm using the UNSIGNED side effect to "fix" some concurency problems).
Quote from: Chris on December 22, 2008, 03:39:43 PMAs for negative rollover it was interoduced in MySQL 5-something. If you are using MySQL 4 you are safe (I'm 100% sure of this because I'm using the UNSIGNED side effect to "fix" some concurency problems).Nope its been there since 3.x because I've been bit by every version since then.It's actually not a bug it is the defined behavior the mysql developer group wants, go figure.For me I just made the damn thing signed at be done with it, the mySQL docs recommend using an inline IF in your query. To much work for me