Forum Moderators: coopster

Message Too Old, No Replies

NOOOOB question

         

tonynoriega

9:18 pm on Jan 30, 2007 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Ok, so i build some PHP pages of my clients site, that have a registration page and login section on it.

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?

eelixduppy

9:22 pm on Jan 30, 2007 (gmt 0)



You might want to take a look at the Basic Syntax [us2.php.net] for PHP. This explains how to use opening and closing tags throughout your code.

mcibor

4:22 pm on Feb 1, 2007 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



what server do you have?

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