instead of keep writing everytime in your code
$SELECT = "SELECT * FROM internetuser WHERE user='".$USER."'";
$result = mysql_query($SELECT) or die(mysql_error());
....
have you ever think of making a custom class to manage your queries?
i was thinking to build one for my website...
but i'm not sure if it is gonna be a good idea... thinking about
light easy code...
what do you think about it?
any new idea is welcome...