Forum Moderators: coopster
Heres my Newbie question....Can i not implement standard HTML tags into this page?
Every time i try, the PHP section gets treated as if it was some HTML code....
I also want to try to implement a CSS template that i have and need to know how to implement that as well...
My page starts with <?PHP...and all my registration stuff after that...
i want to use this CSS template to structure the pages more business like, and keep it looking clean...
can someone show me how to accomplish this?
Usually php parses only files with extension .php
Try to create such two files:
index.html
<?php
phpinfo();
?>
and
index.php
<?php
phpinfo();
?>
They should return a large page containing all the info on the server and installed modules.
Write here please your output.
Michal