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页面也会提示‘标题不能为空’,好纠结...
- 3 回答
- 1 关注
- 1702 浏览
添加回答
举报
0/150
提交
取消