Jump to content

php array error checkbox


jamesreno20

Recommended Posts

database.php

________________________________________________________________________________________

 

$res = pg_query ($conn, "SELECT artist, composer, genre, title, album, label, price, description FROM music");

        echo "<table border='1'>";
        while($a = pg_fetch_array($res)){
            echo "<td>" . $a['1'] . "</td>";
            echo "<td>" . $a['2'] . "</td>";
            echo "<td>" . $a['3'] . "</td>";
            echo "<td>" . $a['4'] . "</td>";
            echo "<td>" . $a['5'] . "</td>";
            echo "<td>" . $a['6'] . "</td>";
            echo "<td>" . $a['7'] . "</td>";
            echo '<td><input type="checkbox" name="music[]" value="$ref"' . $row['0'] . $row['1'] . $row['2'] . $row['3'] . $row['4'] . $row['5'] . $row['6'] . $row['7'] . '"/></td>';
echo"</tr>";
      }
    echo "</table>\n";
?>

 

_____________________________________________________________________________-

shoppingbasket.php

_____________________________________________________________________________-

 

<form action="shoppingbasket.php" method="POST">
Send To Basket: <name="music">
<input type="submit" value="submit">
</form>

cant get it to send data from database to this page shoppingbasket.php 

if(isset($_POST['music'])){
  if (is_array($_POST['music'])) {
    foreach($_POST['music'] as $row){
      echo $row;
    }
  } else {
    $row = $_POST['music'];
    echo $row;
  }
}
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.