In the PHP script I’m using, I added the field: Company to the registration html page like so:
<div><div style="margin-left:30px; display:inline;float:left;">
<b>Company Name:</b>
</div>
<div style="margin-right:65px; display:inline;float:right;">
<input type="text" name="Company" size="26" value="[var.Company]" />
</div>
</div>
when I enter a company name such as:
ABC Inc
it appears correctly in the phpmyadmin db table.
But when I enter:
ABC Inc.
(with a period)
the script shows this error:
Error - - Company Invalid character(s)
I’m guessing it has to do with the set up in phpmyadmin?
Any ideas or assistance would be appreciated.