Hope anyone can help me with this newbie question.
I hope to create one site witch should be easy to update. I've made
index.php like this:
-------index.php----------------------------------
<head>
<title>Title here!</title>
</head><body>
<div align="left">
<table dir="ltr" border="0" width="528">
<tr>
<?include ("banner.php")?>
</tr>
<tr>
<?include ("menu.php")?>
</tr>
<tr>
<?include ("what_ever_depending_on_link_in_menu.php")?>
</tr>
<tr>
<?include ("footer.php")?>
</tr>
</table></div></body>
And menu.php like this:
-------menu.php----------------------------------
<table width=108 border=1 cellpadding=1 cellspacing=0>
<tr><td bgcolor=#f5dd94>
<font face=arial size=-2>
<b>M e n u</b>
</font>
</td></tr>
<tr><td><font face=arial size=-2>
<a href="index.php">Index</a><br>
<a href="cars1.php">Car</a><br>
<a href="mc1.php">MC</a><br>
<a href="boat1.php">Boat</a><br>
</font></td></tr></table>
I need help to create something so that I could update this site just by
adding a link in menu.php and of course a new .php-site. This new .php-site
should appear in the table in index.php (<?include
("what_ever_depending_on_link_in_menu.php")?>). This also make things
easier when I'll update the "frame" around the info of the site. This is
just like using frames with out frames, if you know what I mean..
If i'm far off, let me know...!
And one more thing: Do you know about a good php-editor, or something to
build a dynamic enviroment with.
Hopeful regards
Micke