Hello,
im unsure how to fetch a database row that includes php,
i have a row in my database that displays a marquee saying 'welcome $username'
i have connected to the database but the php on page shows 'welcome $username'
how would i get it to state the username instaed of $username
$query = mysql_query("SELECT * FROM marquees");
$results = mysql_fetch_array($results);
$home = $results['home'];
echo $home;