同じデータベース内の2つの異なるテーブルにデータを挿入しようとしていますが、1つのデータベースに挿入しようとすると、 ($のdesc_query)それはここで任意のテーブルPHPを使用して別の2つのテーブルにデータを挿入
は更新されません私のコードです:
$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れているもの。非常に不完全です。すべての変数comから? –
var_dumpを使用して$ a_dの値を確認しようとしています –