I\'ve written this PHP-Script which is working, and now I want to change the row name into a variable to (not sure if row is correct), I mean the \"name\" from the selec
Wouldn't this work?
$result = mysql_fetch_array($query); echo trim($result['name']);