tb1
-----------------
id | codetb1
-----------------
1 | code1,code2
2 | code2,code3
tb2
-----------------
codetb2 | cost
-----------------
code1 | $20
code2 | $40
code3 | $60
save.php -> This is how I insert checkbox values to the database.
$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 -> this is my connection and how I can get my result
$query="SELECT * FROM tb1, tb2 WHERE
tb1.codetbl1 = tb2.codetbl2 AND
tb1.id='$id'";
Hi all -- your help is greatly appreciated. I have 2 databases (table 1 and table 2). I would like to have the 2 databases linked with one another. I am having trouble accomplishing this. For example, I tried explode but I couldnt make it work.
So How can I get rid of that comma from codetb1 and find a way to match with codetb2. So finally I can get cost. Any ideas?