Hi Matt,

I put this right above like 871:
print "<br><br>$_POST[domainregister_domain$i]<br><br>";

So now that "print" line is 871.  It produces the exact same error as
the mysql_query() line.

The reason I'm doin it like this is cuz I'm dynamically generating
forms, and lots of the fields are the same, just with different numbers
at the end:
ex:
domainregister_domain1
domainregister_domain2

Those field names are generated by PHP for the form, and now I'm doing
the page to process that form.  Would doing
$_POST['domainregister_domain'][$i] get the correct value from my
"domainregister_domain1" field if $i=1?

Thanks,
Tyler

Thanks,
Tyler

On Mon, 2003-12-22 at 12:47, Matt Matijevich wrote:
> [snip]
> Sorry, should have mentioned that I tried quoting them already.  That
> gives a T_VARIABLES parse error.
> 
> Thanks for the reply,
> Tyler
> [/snip]
> 
> What happens if you comment out the mysql statement and just echo the
> variables?
> 
> echo $_POST[domainregister_domain$i]
>         $_POST[domainregister_type$i]....;

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

Reply via email to