View Single Post
Old 08-01-2008, 07:41   #32 (permalink)
Mesrop
www.mesrop.info
 
Mesrop's Avatar
 
Join Date: Jan 2008
Location: Armenia
Posts: 3
Send a message via ICQ to Mesrop Send a message via AIM to Mesrop Send a message via MSN to Mesrop Send a message via Yahoo to Mesrop Send a message via Skype™ to Mesrop
my simple and useful func.
PHP Code:
function querysingle($query$i=0){
$result=@mysql_query($query);
$row=@mysql_fetch_array($result);
return 
$row[$i];

Quote:
$string=querysingle("select `name` from `users` where `id`='1' ");
or
Quote:
$string=querysingle("select * from `users` where `id`='1' ", "name");
  Reply With Quote