我在尝试执行代码时得到一个未定义的变量,该条目在mysql中生成但没有插入数据,显然是因为未定义的变量。
它正在运作......
以下是信息:
PHP Notice: Undefined variable: title in /Applications/MAMP/htdocs/rfx/wp-content/plugins/rfx-manager/inc/rfi_page.php on line 154
以下是代码:
<?php
$wpdb->query("insert into ".$wpdb->prefix."forms set user_id=".$user_id.",
title='".$title."');
$title=$result->title;
?>
<form method="post" enctype="multipart/form-data" role="form">
<label for="title"><b>Enter title here:</b></label>
<br>
<input type="text" name="title" class="large-text" value="<?php echo (isset($title) ? $title : '') ?>" placeholder="Enter title">
<input class="button-primary" type="submit" name="submit" value="<?php _e( 'Submit RFI for approval' ); ?>" />
</form>
答案 0 :(得分:0)
对不起家伙们,基本上问题在于其中一个变量当然没有被声明。
我给的片段是这样的:
$标题= $ result-&GT;标题;
有更多像这样堆积的变量,其中一个是冲突,我基本上逐个添加每一个并测试它,这就解决了问题。
希望这有助于任何人。