Is there a quick and dirty way to get the value of one column from one row? Right now I use something like this:
$result = mysql_query(\"SELECT value FROM ta
Do u want this?
$output = array(); while($row = mysql_fetch_array($result)){ $output[] = $row['value']; } return $output;