Beispiel #1
0
<?php

include_once 'dbio/NewsTypes.php';
include_once 'dbio/NewsArticles.php';
//头部导航菜单
$newsTypes = NewsTypes::getNewsTypes();
//接收数据
$searchType = $_POST['searchType'];
$keywords = $_POST['keywords'];
$result3 = array();
if ($result3 != NULL) {
    $result3 = NewsArticles::search($searchType, $keywords);
}
?>



<html>
  <head>
    <title>天天新闻网</title>
    <meta http-equiv="content-type" content="text/html;charset=utf-8">
    <link href="css/news.css" type="text/css" rel="stylesheet" />
    <script type="text/javascript">

	</script>
  </head>
  <body>
    <!-- 网站头 -->
   <?php 
include_once 'header.php';
?>