I didnt get the request?
PHP files can include HTML so you can just:
1- Create a HTML file for your privacy statement then rename it as .php to make it PHP
2- If you already have a existing PHP file and you want to insert your statement there, you can :
a) Insert this code
?>
Your statement (in HTML here)
<?
in anywhere you like in your PHP file, so while file is parsed, this part will be posted as an HTML code
or
b) Use
echo '........................';
lines to print your statement via PHP commands.
If what you want it a sample PHP file you can use this code:
<?
echo '........................';
echo '........................';
echo '........................';
echo '........................';
?>
Edit ....... part and save the file with an .php extension..
|