Hi,
I have a page where at the top of the page a variable is defined.
ex .
<?
$name = 'John Smith';
?>
In my mysql database I have a field which i want to print out the variable value. Right now the field in my database is -
Hi your name is $name
What I would like to know is what I need to type to get the database to print out 'John Smith' instead of '$name'
Thanks in advance
-Mark