checkboxe og php??
Jeg skal have lavet en if struktur der går ind og tjekker op på om der er nogle checkboxe der er krydset af, hvis ja, så skal de sættes ind i db.. Nogle ideer?Koden ser således ud indtil videre:
<h2 style="margin-left:10px;">Oversigt over produkt guides</h2><br />
<?php
if(isset($_SESSION['in'])){
echo '<div style="margin-left:10px;">' .$_SESSION["in"] .'</div>';
unset($_SESSION['in']);
};
if(isset($_SESSION['upd'])){
echo '<div style="margin-left:10px;">' .$_SESSION["upd"] .'</div>';
unset($_SESSION['upd']);
};
?>
<table style="margin-left:10px;"><tr>
<th style="width:100px;">Rediger</th>
<th style="width:250px;" align="left">Product guide</th>
<th style="width:50px;">Vælg</th></tr>
<?php
$query = mysql_query("SELECT * FROM products_guides ORDER BY product_guides_id ASC") or die(mysql_error());
$x = 0;
while($row = mysql_fetch_assoc($query)) {
$x++;
$bgcolor = $x%2 == 0 ? 'ffffff' : 'eeeeee';
echo '<tr style="background-color:#'.$bgcolor.';"><td><a href="?edit='.$row['product_guides_id'].'">Ret</a></td><td>'.$row['products_guides_name'].'</td><td>
<form method="post"><input type="checkbox" name="chk1[]" id="'.$row['products_guides_id'].'" value=""></form>
</td></tr>';
}
?>