wtf, iv never heard of this before.....
i thought it did this by itself already.....
so this basicly does this:
$name = "Austin";
$number = 4564566;
echo "Hello $name, your number is $number.";
that will accualyl show:
Hello $name, your number is $number."
but if i make the line of text a string and call it $text,
then after using this:
eval("\$text = \"$text\";");
i can now echo it and it will display Austin, instead of $name?