article.add.php表单代码
<form method="post" action="article.add.handle.php">
标题:<input type="text" name="title" id="title">
<br><br>
作者:<input type="text" name="author" id="author">
<br><br>
描述:<input type="text" name="description" id="description">
<br><br>
内容:<br> <textarea name="content" id="content" cols="30" rows="10"></textarea>
<input type="submit" name="submit" value="提交">
</form>
article.add.handle.php代码
<?php
//把传递过来的信息入库
require_once('../connect.php');//连接数据库
echo $_POST['title'];
echo $_POST['author'];
访问article.add.php,输入value值,
然后跳转到article.add.handle.php
我现在将老师的源码输入进去,article.add.handle.php页面也会提示‘标题不能为空’,好纠结...
晚安sp
時過境遷