首页 > php代码 > php 数据不能被插入到Access数据库

php 数据不能被插入到Access数据库

<!DOCTYPE HTML> 
<html> 
<head> 
<title>Untitled Document</title> 
</head> 
<body> 
<?php
$_POST['username'] = $username;
$_POST['admin'] = $admin;
$_POST['gender'] = $gender;
$_POST['address'] = $address;
$_POST['hometel'] = $hometel;
$_POST['hp'] = $hp;
$_POST['email'] = $email;
$_POST['course'] = $course;
$_POST['year'] = $year;
$_POST['path'] = $path;
$_POST['title'] = $title;
$_POST['supervisor'] = $supervisor;
echo "Data has been submitted";
function Enter_New_Entry($username, $admin, $gender, $address, $phone, $hp, $email, $course, $year, $path, $title, $supervisor) {
    if (!$cnx = odbc_connect('FYP', 'root', '')) die("error with connection");
    $SQL_Exec_String = "Insert Into rank (username,admin,gender,address,hometel,hp,email,course,year,path,title,s upervisor) 
            Values ('$username','$admin','$gender','$address','$phone','$hp','$email','$course','$year','$path','$title','$supervisor')";
    $cur = odbc_exec($cnx, $SQL_Exec_String);
    if (!$cur) {
        Error_handler("Error in odbc_exec( no cursor returned ) ", $cnx);
    }
    odbc_close($cnx);
}
Enter_New_Entry($username, $admin);
?> 
 
</body> 
</html>


文章链接:http://www.phprm.com/code/33031.html

随便收藏,请保留本文地址!

标签:none

发表留言