Hello to most helpful forum ever 🙂
I've got a simple question:
what's the difference(if any) between
$sql = mysql_query("SELECT you_ff FROM finished WHERE '$off_id'=camp_ff AND '$ip'=user_ip");
$result = mysql_fetch_array($get_auth);
and
$result = mysql_fetch_array(mysql_query("SELECT you_ff FROM finished WHERE '$off_id'=camp_ff AND '$ip'=user_ip"));
is there any performance difference or anything, second one works for me fine and I don't see the reason why anyone would want to use first example.