我正在尝试使用moodle将记录插入我的数据库。
我使用的是 1.9.19 版本。我正在尝试以下代码:
<?php
require_once('config.php');
require_once('uplo.php');
$mform = new uplo();
$mform->display();
if(isset($_POST['submitbutton'])){
$name = $mform->get_data('name');
$email = $mform->get_data('email');
$table='mdl_tet';
$res=insert_record($table, '$name','$email') ;
}
?>
但这不能正常工作。如何正确地做到这一点。
注意:为什么使用 1.9.19 意味着我的客户使用此版本,所以我无法更改版本。