Ich mache ne Website.
Ich will da verschiedene Links machen
Wenn ich jetzt auf einen Link klicke,zb. News möchte ich das die datei news.php geladen wird innerhalb der main.php.
Hier mein Code:
<!doctype html public "-//W3C//DTD HTML 4.0 //EN">
<html>
<head>
<title>main</title>
<meta name="author" content="Legolas">
<link rel="stylesheet" href="text.css" type="text/css">
</head>
<body marginwidth=0 marginheight=0 leftmargin=0 topmargin=0>
<?php
include('var.inc.php');
if(!isset($site)){
loadsite();}
echo"<table width=\"100%\" height=\"500\" border=\"0\" cellspacing=\"0\" cellpading=\"0\">".
"<tr>".
"<th align=\"right\" colspan=\"2\" width=\"100%\" height=\"10%\" bgcolor=\"#FFFFFF\">";
$timestamp = time();
$datum = date("d.m.Y",$timestamp);
$uhrzeit = date("H:i",$timestamp);
echo "Heute ist der ",$datum," - ",$uhrzeit," Uhr";
echo"</th>".
"<td></td>".
"<td></td>".
"</tr>".
"<tr>".
"<td align=\"left\" valign=\"top\" height=\"500\" width=\"10%\" bgcolor=\"#000000\">".
"<br>".
"<a href=\"index.php\" class=\"normal\">Home</a>".
"<br>".
"<a href=\"main.php?site=news\" class=\"normal\">News</a></td>".
loadsite{
if($site=="news")
{include($news);}
}
"<td height=\"500\" bgcolor=\"#C0C0C0\">Main</td>".
"</tr>".
"</table>".
"</body>".
"</html>";
?>
Ich will da verschiedene Links machen
Wenn ich jetzt auf einen Link klicke,zb. News möchte ich das die datei news.php geladen wird innerhalb der main.php.
Hier mein Code:
<!doctype html public "-//W3C//DTD HTML 4.0 //EN">
<html>
<head>
<title>main</title>
<meta name="author" content="Legolas">
<link rel="stylesheet" href="text.css" type="text/css">
</head>
<body marginwidth=0 marginheight=0 leftmargin=0 topmargin=0>
<?php
include('var.inc.php');
if(!isset($site)){
loadsite();}
echo"<table width=\"100%\" height=\"500\" border=\"0\" cellspacing=\"0\" cellpading=\"0\">".
"<tr>".
"<th align=\"right\" colspan=\"2\" width=\"100%\" height=\"10%\" bgcolor=\"#FFFFFF\">";
$timestamp = time();
$datum = date("d.m.Y",$timestamp);
$uhrzeit = date("H:i",$timestamp);
echo "Heute ist der ",$datum," - ",$uhrzeit," Uhr";
echo"</th>".
"<td></td>".
"<td></td>".
"</tr>".
"<tr>".
"<td align=\"left\" valign=\"top\" height=\"500\" width=\"10%\" bgcolor=\"#000000\">".
"<br>".
"<a href=\"index.php\" class=\"normal\">Home</a>".
"<br>".
"<a href=\"main.php?site=news\" class=\"normal\">News</a></td>".
loadsite{
if($site=="news")
{include($news);}
}
"<td height=\"500\" bgcolor=\"#C0C0C0\">Main</td>".
"</tr>".
"</table>".
"</body>".
"</html>";
?>
Kommentar