Is it possible to embed variable in longtext data field?
For instance:
the field name is "description" and it contains...
The date is $date_var.
In PHP/MySQL Query:
$date_var = date('m/d/Y');
echo $row['description'];
The output should be:
The date is 10/14/2012.
please advise.