This is one way:
PHP Code:
// load the .htm file
$fp = fopen('template.htm','r');
$html = fread($fp, filesize('template.htm'));
fclose($fp);
// replace the data
$html = str_replace( array('{make}','{model}','{year}'), array($make,$model,$year), $html);
// print it
echo $html;
Leave a comment: