tb1
-----------------
id | codetb1
-----------------
1 | code1,code2
2 | code2,code3
tb2
-----------------
codetb2 | cost
-----------------
code1 | $20
code2 | $40
code3 | $60
save.php -> これは、チェックボックスの値をデータベースに挿入する方法です。
$codetb1 = $_POST['codetb1'];
var_dump($codetb1);
// Setting up a blank variable to be used in the coming loop.
$allStyles = "";
// For every checkbox value sent to the form.
foreach ($typeocodetb1fvisit as $style) {
// Append the string with the current array element,
// and then add a comma and a space at the end.
$allStyles .= $style . ", ";
}
// Delete the last two characters from the string.
$allStyles = subs
tr($allStyles, 0, -2);
Result.php -> これは私の接続であり、結果を取得する方法です
$query="SELECT * FROM tb1, tb2 WHERE
tb1.codetbl1 = tb2.codetbl2 AND
tb1.id='$id'";
こんにちは -- ご協力いただきありがとうございます。2 つのデータベース (テーブル 1 とテーブル 2) があります。2 つのデータベースを相互にリンクしたいと考えています。これを達成するのに苦労しています。たとえば、私は爆発しようとしましたが、それを機能させることができませんでした.
では、codetb1 からコンマを取り除き、codetb2 と一致させる方法を見つけるにはどうすればよいでしょうか。それで、ようやくコストを取得できます。何か案は?