PHP development corporate website tutorial: Add news information
Click the add button to jump to the addne.php page
Let’s take a look at the addne.php code:
<!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>Look at the above code: form submission addnews.php page
Let’s look at the code of the following addnews.php page:
<?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>";
}
?>Get the form information, then add it to the database table, and then judge whether the addition is successful
new file
<!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>
Preview
Clear
- Course Recommendations
- Courseware download
The courseware is not available for download at the moment. The staff is currently organizing it. Please pay more attention to this course in the future~
Students who have watched this course are also learning
Let's briefly talk about starting a business in PHP
Quick introduction to web front-end development
Large-scale practical Tianlongbabu development of Mini version MVC framework imitating the encyclopedia website of embarrassing things
Getting Started with PHP Practical Development: PHP Quick Creation [Small Business Forum]
Login verification and classic message board
Computer network knowledge collection
Quick Start Node.JS Full Version
The front-end course that understands you best: HTML5/CSS3/ES6/NPM/Vue/...[Original]
Write your own PHP MVC framework (40 chapters in depth/big details/must read for newbies to advance)
















