私のコードはこれで、次の通知を削除したいと思います。
1. Notice: Undefined index: name
2. Notice: Undefined index: website
3. Notice: Undefined index: description
また、このコードは、Webページを更新するときにデータを自動的に追加します。
<?php
{
// Instructions if $ _POST [ 'name'] exists
}
$wpdb->query("insert into ".PRO_TABLE_PREFIX."tutorial ( name, website, description )
values('{$_POST['name']}','{$_POST['website']}','{$_POST['description']}')");
?>