Функція
function mysql_get_var($query,$y=0)( $res = mysql_query($query); $row = mysql_fetch_array($res); mysql_free_result($res); $rec = $row($y); return $rec; )
Використання
$name = mysql_get_var("SELECT name from people where email = '(email protected)'");
Поверне поле імені, тому те, що повернеться, буде “Роджер” (якщо це було моє ім’я в базі даних).