我想插入數據到兩個不同的表在同一個數據庫,如果我嘗試將其插入到一個數據庫,它的工作,但是,一旦我插入第二個查詢到我的代碼($ desc_query),它不會更新任何表插入數據到兩個單獨的表使用php
這裏是我的代碼:
$name= strip_tags($_POST['name']);
$l_name= strip_tags($_POST['last_name']);
$c_id = strip_tags($_POST['company_id']);
$a_d = strip_tags($_POST['add_description']);
$d_t = strip_tags($_POST['desc_text']);
$connect = mysql_connect('localhost','id','pass') or die ("couldn't connect!");
mysql_select_db('database_db') or die('could not connect to database!');
//inserting names
$job_query=mysql_query("INSERT INTO names VALUES ('', '$name', '$l_name')");
//inserting a new description if needed. (this is the part that ruins everything)
if($a_d == 'true'){
$desc_query=mysql_query("INSERT INTO descriptions VALUES ('','$c_id','$d_t')");
}
什麼是$ A_D ??? – 2012-04-20 21:50:47
你的代碼。非常不完整,在哪裏做所有的變量com從? – 2012-04-20 21:51:39
嘗試使用var_dump並查看$ a_d – 2012-04-20 21:51:51