The echo was just for testing purposes when I realized the form wasn't working at all. As far as the input cleaner goes, I was not aware of that. I'll take a look for the article you mentioned.
--------------- Added [DATE]1263672988[/DATE] at [TIME]1263672988[/TIME] ---------------
Just a clarification: by input cleaning, is there something else I should be doing in addition to mysql_real_escape_string()? That's the function I use to prevent SQL injection, but I don't know if you mean that there's something else that vBulletin has to format/handle/process/whatever form data.
--------------- Added [DATE]1263673697[/DATE] at [TIME]1263673697[/TIME] ---------------
Ok, I think I figured it out and it appears to be the problem you've described. I located
this post which describes the input cleaner.
When I used
clean_array_gpc() and changed
$_POST['CompanyName'] to
$vbulletin->GPC['CompanyName'], everything looks good so far. I'll keep playing around with this but I think this is the solution.
Thanks again, Lynne.