How do you design a page (Newbie) | |
"Equis" <rhys@gallamda.net> schreef in bericht
news:3f56e03a$1@dnews.tpgi.com.au...
> Hello,
>
> I am new to PHP and was wondering how I would go about creating the look
of
> a page, is this correct?
>
> 1. use something like Frontpage or Similar and add the layout as you
want
> it
> 2. rename file to PHP
> 3. put all the PHP code in you need
>
> What happens if you want a small change to apperence? do yo have to put
all
> the PHP back in again?
>
> I good coder may know all the HTML without the WYSIWYG but not me :-(
>
> Thanks for any help
>
code like this to seperate the code from the html and use something like
dreamweaver because frontpage creates crappy code!!
hope this helpes
G
<html>
<head><title><?php echo $title ?></title></head>
<body>
<table>
<tr>
<td>
<a href="http://www.php.net"><?php echo "Link to the php website"; ?></a>
</td>
</tr>
</table>
</body>
</html> |