No, no. Here is what I'm trying to do.
The variables, first, are defined, then the string is pulled from the database, then I put it in a varaible and echo it. And it just print the variable name, and not the value in the variable.
Code:
$item=horses;
$callName=Roonie;
if
($item == horses
OR $item == sheep
OR $item == asdfsdafd)
{
$requestFrom=itemEndingPlur;
$plur=yes;
print $plur;
}
$linkID=mysql_connect(xxxxx,xxxx,xxxx);
mysql_select_db(users, $linkID);
$result=mysql_query("SELECT message FROM socialize WHERE name='$requestFrom'");
$message=mysql_result($result, socialize);
print $message;
You see, what I want to do, is put a string in a database with variables in it, and have it so when I print the string, it puts the value int he variables, not the variable names.