'lo everyone,
got some problem around with a form
my user valid a checkbox (1 or 2 or 3 author)
then php generates a form with variant name/first name entries :
$nb=checbox validated as true
for($c; $c<=$nb;++$c)
{
echo('<tr><td width="47%" align="right">nom'.$c.'</td>');
echo('<td width="53%"><input type="text" name="nom'.$c.'"></td></tr>');
echo('<tr><td width="47%" align="right">prénom'.$c.'</td>');
echo('<td width="53%"><input type="text" name="prenom'.$c.'></td></tr>');
up to here, verything's ok!
BUT
Php has generated dynamically input text object and I want to gather information which are in it and I cannot find out how to.
$HTTP_POST_VARS return 'only variables can be passed by reference'
Can anyone find me a solution or tell what's going wrong please
thanks
mat