add amendments metric
[contractdashboard.git] / cutenews / example1.php
blob:a/cutenews/example1.php -> blob:b/cutenews/example1.php
<html> <html>
<head><title>Example1</title></head> <head><title>Example1</title></head>
<body> <body>
<a href="?go=news">news</a> || <a href="?go=news">news</a> ||
<a href="?go=headlines">headlines</a> || <a href="?go=headlines">headlines</a> ||
<a href="?go=archives">arhcives</a> || <a href="?go=archives">arhcives</a> ||
<a href="?go=search">search</a> || <a href="?go=search">search</a> ||
<a style="font-size:120%" href="example2.php">See Advanced Example >></a> <a style="font-size:120%" href="example2.php">See Advanced Example >></a>
<hr> <hr>
<?PHP <?PHP
error_reporting (E_ALL ^ E_NOTICE); error_reporting (E_ALL ^ E_NOTICE);
if($_GET['go'] == "" or $_GET['go'] == "news"){ if($_GET['go'] == "" or $_GET['go'] == "news"){
include("show_news.php"); include("show_news.php");
} }
elseif($_GET['go'] == "headlines"){ elseif($_GET['go'] == "headlines"){
$template = "Headlines"; $template = "Headlines";
include("show_news.php"); include("show_news.php");
} }
elseif($_GET['go'] == "archives"){ elseif($_GET['go'] == "archives"){
include("show_archives.php"); include("show_archives.php");
} }
elseif($_GET['go'] == "search"){ elseif($_GET['go'] == "search"){
include("search.php"); include("search.php");
} }
?> ?>
</body> </body>
</html> </html>