Closer but not what I am looking for!
Maybee this will help me explain.
<?
$string = 'test';
'$' . $string = 'Print This';
echo $test;
?>
I am wanting to take the string 'test' turn it into a variable named $test set it to 'Print This' then output it whith echo $test.
This is not doing what I am wanting it to do but it is the best I can do to explain it.
Thanks for your help!
-Mark