|
Hi everyone,
i want to store php variables in db fields.
IE
$ct = "happy campaign";
// query db result
fieldA = Thanks for getting involved. Your campaign ".$ct. " has been
$body = $fieldA;
echo $body;
result rendered = Thanks for getting involved. Your campaign ".$ct. " has been
The problem i am having is when i collect the field content, even though $ct is defined before the query, $ct is what is stored to the variable and not the previously defined va;ue stored in $ct.
Could anyone help me this?
The result i want to get is
Thanks for getting involved. Your campaign happy campaign has been
Cheers
Steve
|