insert php output into static html file
Posted: Sat Sep 13, 2008 1:57 am
hi guys.
i want to know if there a way to insert php output as a table into static html file.
some sort of include.
php generates-> some table -> now insert this table into static index.html file.
my php code looks like this
i want to know if there a way to insert php output as a table into static html file.
some sort of include.
php generates-> some table -> now insert this table into static index.html file.
my php code looks like this
Code: Select all
<td>
<a href="<?php echo $the_permalink;?>" target="_blank_"><?php echo $blog_title; ?></a> (
<?php echo $blog_date; ?>) :<br>
<?php echo $blog_content; ?> ..... <a href="<?php echo $the_permalink;?>" target="_blank_">read more</a>
</td>