Hi all

I have the following php code:

echo"<td>&nbsp;</td><td><input type=\"checkbox\" name=\"frow\"
value=\"$var\"></td>\n";

I now have the following javascript code:
<!-- From webmin-->

<a href='' onClick='document.frm.frow.checked = true; for(i=0;
i<document.frm.frow.length; i++) { document.frm.frow[i].checked = true; }
return false'>Select all</a>&nbsp;
<a href='' onClick='document.frm.frow.checked = !document.frm.frow.checked;
for(i=0; i<document.frm.frow.length; i++) { document.frm.frow[i].checked =
!document.frm.frow[i].checked; } return false'>Invert selection</a><br>

the problem I have is that if I change the

echo"<td>&nbsp;</td><td><input type=\"checkbox\" name=\"frow\"
value=\"$var\"></td>\n";
to
echo"<td>&nbsp;</td><td><input type=\"checkbox\" name=\"frow[]\"
value=\"$var\"></td>\n";

Then my php task is fine, but if I make it a normal variable, like
name="frow"

But then my PHP does not work, and the Javascript does work (Selects all the
checkboxes with a tick)

I can determine if this is a javascript fault or a php fault.

Im stumped


If know of a solution, it would be most appreciated

Kind Regards
Brent Clark

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to