Click to See Complete Forum and Search --> : Form Help


big9284
06-09-2003, 12:20 PM
I am trying to create a Form for my work, when i recieve the form now the text appears in the email like this:

first name = John
last name = Smith
middle initial = Q
Address = 555 fake st
city = Los Angeles
State = CA
zip = 90060

However my boss wants it to look like this

Smith, John Q
555 Fake St.
Los Angeles, CA 90060

Is there a way to do this while keeping each piece of data entered seperate

Any help would be much appreciated

Khalid Ali
06-09-2003, 12:56 PM
The reality is that you can not manipulate the default behavior that browsers has for this purpose.However what you can do is create another form and create some elements
such as

name

street address

city/province

and then when you submit thios form before submission populate these fields with the values.

But as I said before the form field name will appear using the default browser behavior.
If you use server side scripting I am sure you can get whatever formatting you desire.