Help Integrating PHP with my website!

liunx

Guest
Ok, I am moving my site to a host right now, and I am using PHP to create a menu template (the links are all white now instead of blue). I updated all the pages with the new code and saved them as PHP. Is this correct so far? I FTP'd them but the html files load by default, so I still see the old blue links in my menu. Please help me out!!! <!-- w --><a class="postlink" href="http://www.icenugget.com">www.icenugget.com</a><!-- w --> (<!-- m --><a class="postlink" href="http://www.icenugget.com">http://www.icenugget.com</a><!-- m -->) This is the site. <br />
<br />
The only html pages I uploaded were the index and the drawings page, besides the menu.html. If I change the url to index.php, it works like I want it to. Any help is appreciated!<!--content-->You have both index.html and index.php<br />
<br />
You should only have one. Get rid of the index.html and the index.php should load by default.<!--content-->thanks....uhm......i guess that was pretty easy. yeah. don't laugh.<!--content-->If index.php does not load by default, insert this code into you index.html file:<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><br />
<br />
<html><br />
<head><br />
<title>Your Site - Redirecting You</title><br />
</head><br />
<br />
<body><br />
<b>This Site Has Moved!! If you are not redirected <a href=http://www.htmlforums.com/archive/index.php/"http://www.yoursite.com" target="_self" name="Click Here" onMouseOver="window.status='Click Here'; return true;" onMouseOut="window.status=''; return true;">Click Here</a><br />
<br />
<SCRIPT language="JavaScript"><br />
<!--<br />
window.location="http://www.yoursite.com";<br />
//--><br />
</SCRIPT><br />
<br />
</body><br />
</html><br />
<br />
If they do not hae javascript enabled, use this one:<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><br />
<br />
<html><br />
<head><br />
<title>Your Site - Redirecting You</title><br />
<meta http-equiv=Refresh content="1; URL=http://www.yoursite.com/"><br />
</head><br />
<br />
<body><br />
<b>This Site Has Moved!! If you are not redirected, please <a href=http://www.htmlforums.com/archive/index.php/"http://www.yoursite.com">Click Here</a><br />
<br />
</body><br />
</html><br />
<br />
HTH,<br />
Kevin Naia<!--content-->lol <br />
<br />
<br />
:D :D :D :D<!--content-->
 
Back
Top