I have a html file, now I want another php program to manipulate this file and add lines such as:
<?
include_once("abc");
?>
to the top of this html file, so it will look like:
how can I do that with php code? anyone can help me?
Thanks
<?
include_once("abc");
?>
to the top of this html file, so it will look like:
Code:
<?
include_once("abc");
?>
<html>
<body>
....
</body>
</html>
how can I do that with php code? anyone can help me?
Thanks