printing mysql template field variable prints as string
Posted: Fri Sep 02, 2005 2:55 pm
I am inserting content into a mysql table. When I read the table and print the variable it prints as a string.
example: print $header; will echo <title><?php echo $title; ?></tilte>
$title = 'My New Page';
I want the print $header tag to print <title>My New Page</table>
example: print $header; will echo <title><?php echo $title; ?></tilte>
$title = 'My New Page';
I want the print $header tag to print <title>My New Page</table>