Hallo ich habe folgendes Script:
Allerdings haut das jetzt nicht hin ich will wenn ich eine Checkbox in dem fall die mit der variable cd1 aktiv habe das er mir den text oben ausgibt.
Ich bekomme das aber nicht hin. Ich weiß nicht an was das liegt.
Kann mir da jemand helfen?
Normal müsste doch der name der Checkbox jetzt bei jedem durchlauf hochzählen. Die erste Variable $cd0 dann $cd1 dann $cd2 usw.?
Was mach ich da falsch.
MFG
druckgott
PHP-Code:
<form action = "<?php $PHP_SELF ?>" method
= "post">
<?php
if ($cd1)
echo "TEST<p>";
include "connect.php";
mysql_select_db($datenbank) OR die(mysql_error());
$sql = "SELECT name, cid FROM jos_ponygallery_catg;";
$res = mysql_query($sql) OR die(mysql_error());
$num = mysql_num_rows($res);
for($x=0;$x<$num;$x++)
{
$name = mysql_result($res, $x, "name");
echo "<input type='checkbox' name='cd".$x."' value='v' checked>";
echo $name;
echo "<p></p>";
}
echo "<input type = 'submit'>";
?>
Ich bekomme das aber nicht hin. Ich weiß nicht an was das liegt.
Kann mir da jemand helfen?
Normal müsste doch der name der Checkbox jetzt bei jedem durchlauf hochzählen. Die erste Variable $cd0 dann $cd1 dann $cd2 usw.?
Was mach ich da falsch.
MFG
druckgott
Kommentar