MySQL Entry
CODE
This is some sql entry. $var
I tryied:
CODE
$var=("It worked");
$row = mysql_fetch_array(mysql_query("SELECT * FROM example WHERE id='5'"));
$output=$row['content'];
echo($output);//Doesnt work
echo<<<END
$output
END;//Still doesnt work
$row = mysql_fetch_array(mysql_query("SELECT * FROM example WHERE id='5'"));
$output=$row['content'];
echo($output);//Doesnt work
echo<<<END
$output
END;//Still doesnt work
My wanted outcome:
CODE
This is some sql entry. It worked
Do you understand what I am saying? Im sorry but I think I stated the question well.
Thank you all very much for all the help,
Sparkx

