This is the code I went with and it works like a charm! Thank you very much
M. Sokolewicz!

echo "{$row['name']}<br />{$row['description']}";
would work, just like all of the following would also:
echo "$row[name]<br />$row[description]";
echo $row['name']."<br />".$row['description'];

and a couple of others

--
Steve Marquez

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to