PHP: Making this grabbing from db easier/simpler way?

bulovaTGYEF

New Member
Is there any method i could do this easier:\[code\]$query = mysql_query("SELECT full_name FROM users WHERE id = '$show[uID]'");$row = mysql_fetch_array($query);echo $row["full_name"] . " ";\[/code\]as i only need to grab the full_name, then i make a var for the fetch_array and so, is there any way to make this simpler and echo? There was something about list(), but im not sure..
 
Back
Top