$resultSystem = mysql_query("SELECT * FROM templates where templateId = 1");
while($row = mysql_fetch_assoc($resultSystem))
{
$Part1 = $row["Part1"];
}
$name = "Peter";
echo $Part1;
In my database $Part1 results in $name. I would like the code to print the name "Peter", however it prints $name. How do I make PHP print the value of the variable?