我使用了理论、实例,并研究了与我的问题有关的许多其他问题,我仍然可以让它去工作,我相对而言是新颖的,对项目主管机构没有任何了解。 我将我的法典改为我的手法,而不是我的手法,以便删除我的大学给我的精通的法典,但是,在这种情形下,这些法典的作用并不大。
If anyone could shed some light onto this issue for me I would be very grateful. Below are my code samples:
<?php /*connect to the db */
$link=mysqli_connect("dbhost","user","pass");
mysqli_select_db("db",$link);
/*checking connection*/
if ($link->connect_errno)
throw new exception(sprintf("Could not connect: %s", $link->connect_error));
session_start();
$insert_query="
INSERT INTO testone_tbl (age,hours,flexibility,fastpaced,retailexp,
workedus,conviction,permit,education)
VALUES ( $age , $hours , $flexibility , $fastpaced , $retailexp , $workedus ,
$conviction , $permit , $education );
INSERT INTO testtwo_tbl
(contribute,insales,initiative,success,alternatives,targets,
newthings,custfeed,incdevelop,standards,confident,stretch,
opportunities,polite,ideas,deadline,supported,duties)
VALUES ( $contribute , $insales , $initiative ,
$success , $alternatives , $targets , $newthings ,
$custfeed , $incdevelop , $standards , $confident , $stretch ,
$opportunities , $polite , $ideas , $deadline , $supported , $duties )";
/*execute multi_query*/
mysqli_multi_query ($link, $insert_query);/*error1*/
/*close connection*/
if(!$link>connect_errno) $link->close(); /*error2*/
?>
这些数据既来自以(最后形式)形式写成的表格,也来自以前表格的表格。 然而,我也正在发现这一错误:警告:我的sqli_multi_query()期望参数1为我的sqli和Warning:我的sqli_close()期望参数1为我的sqli
,过去几天我一直 st着! 事先感谢你。