Log in

View Full Version : Need help..


madhouse
05-15-2002, 03:47 PM
Can anyone help me write a php privacy file so i can have it in php instead of html..By privacy i mean a privacy statement..
I would be greatfull to that person indeed

Thanks in advanced

Logician
05-16-2002, 08:27 AM
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..