You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
375 B
10 lines
375 B
<?php // body frameset
|
|
|
|
$title = "Olive Branch, MS. - Chamber of Commerce";
|
|
|
|
print("<html>\n<head>\n<title>$title</title>\n</head>\n<frameset ");
|
|
print("cols=\"180,*\" border=0 framespacing=0 frameborder=\"no\">\n");
|
|
print("<frame src=\"menu.php3?content=home\" name=\"menu\">\n");
|
|
print("<frame src=\"test_page.html\" name=\"main\">\n");
|
|
print("</frameset>\n</html>\n");
|
|
?>
|