当我尝试执行此代码时,它不会向数据库添加任何内容,它会显示此通知,但我已经拥有它“ISSET”,请帮忙吗?我可以添加它mannualy,它的工作原理,但我想要一个表格。
第38行是“$ q = .....”
注意:未定义的索引:标题为 第38行的C:\ xampp \ htdocs \ MRMotos \ dynamic \ MRMotos \ admin \ index.php
<?php
if(isset($_POST['submitted']) == 1){
$q = "INSERT INTO pages (title, label, header, body) VALUES ('$_POST[title]', '$_POST[label]', '$_POST[header]', '$_POST[body]')";
$r = mysqli_query($dbc, $q);
if($r){
echo '<p>Page was added!</p>';
}else{
echo '<p>Page could not be added because: '.mysqli_error($dbc);
echo '<p>'.$q.'</p>';
}
}
?>
<form action="index.php" method="post" role="form">
<div class="form-group">
<label for="title">Title:</label>
<input class="form-control" type="text" name"title" id="title" placeholder="Page Title">
</div>
<div class="form-group">
<label for="label">Label:</label>
<input class="form-control" type="text" name"label" id="label" placeholder="Page Label">
</div>
<div class="form-group">
<label for="header">Header:</label>
<input class="form-control" type="text" name"header" id="header" placeholder="Page Header">
</div>
<div class="form-group">
<label for="body">Body:</label>
<textarea class="form-control" name"body" id="body" rows="8" placeholder="Page Body"></textarea>
</div>
<button type="submit" class="btn btn-default">Save</button>
<input type="hidden" name="submitted" value="1">
</form>
答案 0 :(得分:1)
你错过了=
表格中的 <div class="form-group">
<label for="title">Title:</label>
<input class="form-control" type="text" name"title" id="title" placeholder="Page Title">
</div>
附近的名字
<div class="form-group">
<label for="title">Title:</label>
<input class="form-control" type="text" name="title" id="title" placeholder="Page Title">
</div>
可能是
a = np.array([[1, 2], [1, 2]])
a=a[:,:,None]
b=np.array([1]*5)[None,None,:]
答案 1 :(得分:0)
更改按钮代码如下:
按钮类型=&#34;提交&#34; name =&#34;提交&#34; class =&#34; btn btn-default&#34;
并更改您的if条件,如下所示:
如果($ _ POST [&#39;提交&#39;])){
答案 2 :(得分:0)
试试这个:
<?php
....
// change order on search results or on category pages
if ( is_search() || is_category() ) {
// Display only 5 post for the original blog archive
$query->set( 'posts_per_page', 5 );
$query->set( 'orderby', 'post_name' );
$query->set( 'order', 'ASC' );
return;
}
}
....
?>