Hi...
I have a problem with that.
I am new in PHP.
I want to make a code with checkbox (dinammically), and I ask for isset() in this form.
I want to know if the checkbox was checke in the form.
Below is a code of the PHP.
Special thanks to all !!!
From Buenos aires, Argentina !
<?php
//Looking for
$qry_lookingfor = "SELECT lookingfor_ID";
$qry_lookingfor .= " FROM j_tlookingfor";
$rs_lookingfor=mysql_query($qry_lookingfor,$link_sql);
?>
<?php
while ($rw_lookingfor=mysql_fetch_object($rs_lookingfor))
{
$str='isset('.'$'.'chk_lookingfor'.$rw_lookingfor->lookingfor_ID.')';
if (isset($str)) echo 'pepe';
}
?>