Hi to all my question is some weird but i'll explane in here.
i want to record cv examples and user informations. i have two table like that;
cv
*id *format
users
*id *name *age
in format cell include some html tags and $name , $age tags like that;
<p>
My name is <b>$name</b> and im <b>$age</b> years old.
<p>
my codes are like that;
$sqlcv = mysql_fetch_array(mysql_query("select * from cv where id='2'"));
$text = $sqlcv['format'];
$sqluser = mysql_fetch_array(mysql_query("select * from users where id='3'"));
$name = $sqluser['name'];
$age = $sqluser['age'];
echo $text;
result; My name is $name and im $age years old. so html tags works but name and age not shown :( hope i can explane this one