Tutorial laman web korporat pembangunan PHP: Tambah maklumat berita

Klik butang tambah untuk melompat ke halaman addne.php

Mari kita lihat kod addne.php:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>添加新闻资讯</title>
    <style type="text/css">
        .ipt{width:180px;height:30px;border-radius:5px;
            outline:none;border:1px solid #eee;box-sizing:border-box;padding-left:15px;}
        .txt{width:250px;height:200px;}
        .sub{width:50px;height:20px;border:1px solid #eee;background:#eee;color:#ff7575;}
    </style>
</head>
<body>
    <form method="post" action="addnews.php">
        标题:<input type="text" name="title" class="ipt">
        </br></br>
        内容:<textarea cols="50" rows="5" name="content" class="txt"></textarea></br></br>
        <select name="type">
            <option value="0">公司公告</option>
            <option value="1">公司新闻</option>
        </select>
        </br></br>
        <input type="submit" value="添加" class="sub">
    </form>
</body>
</html>

Lihat kod di atas: penyerahan borang addnews.php halaman

Mari kita lihat kod halaman addnews.php berikut:

<?php
    //添加新闻资讯
    require_once('conn.php');
    $title=$_POST['title'];
    $content = $_POST['content'];
    $type = $_POST['type'];
    $newtime = time();

    $sql  = "insert into `news`(title,type,content,newtime) values('$title','$type','$content','$newtime')";
    $res = mysql_query($sql);
    if($res){
        echo "<script>alert('添加新闻成功');location.href='news.php';</script>";
    }else{
        echo "<script>alert('添加新闻失败');location.href='news.php';</script>";
    }

?>

Dapatkan maklumat borang, kemudian tambahkannya pada jadual pangkalan data, dan kemudian nilai sama ada ia berjaya ditambahkan

Meneruskan pembelajaran
||
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
.ipt{width:180px;height:30px;border-radius:5px;
outline:none;border:1px solid #eee;box-sizing:border-box;padding-left:15px;}
.txt{width:250px;height:200px;}
.sub{width:50px;height:20px;border:1px solid #eee;background:#eee;color:#ff7575;}
</style>
</head>
<body>
<form method="post" action="addnews.php">
<input type="text" name="title" class="ipt">
</br></br>
<textarea cols="50" rows="5" name="content" class="txt"></textarea></br></br>
<select name="type">
<option value="0"></option>
<option value="1"></option>
</select>
</br></br>
<input type="submit" value="" class="sub">
</form>
</body>
</html>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  • Cadangan kursus
  • Muat turun perisian kursus
图片放大关闭