Jump to content

Text field on form, does not send message typed by user, but sends everything el


barbixy

Recommended Posts

Hello everyone, ;D

 

Can anyone please help me figure out why, on a form on a website I am updating (html and dreamweaver proficient, no php experience at all), when the user fills in the name, address, etc, all of that information gets sent and received. When the user fills in the field that transmits a text message they fill in a box (ie rows=10 columns=50 etc) the message disappears on the receiving end. ???

Any advice or insight would be appreciated. I can't afford to pay a programmer $200 to fix this form, that's what it cost on my last site and I'm sure its a simple fix. I'm trying to make time to learn php.

 

thank you!

Barb

thank you. I would post just the area where the problem lies, but I don't know what area that is...

here is the "text" part anyway. I'm sorry if this is too long. let me kno' cause I am new here.

 

<form action="<?= $PHP_SELF ?>" method="post">

 

<p><strong>Use this form to request further information:</strong></p>

        <p>

    <strong>NAME:</strong><br />

            <input type="text" size="50" maxlength="50" name="name" /> </p>

        <p><strong>TITLE:</strong><br />

            <input type="text" size="50" maxlength="50" name="title"  /></p>

<p><strong>COMPANY:</strong><br />

          <input type="text" size="50" maxlength="50" name="company" /> </p>

<p><strong>ADDRESS:</strong><br />

            <input type="text" size="50" maxlength="50"  name="address" /> </p>

<p><strong>CITY:</strong><br />

            <input type="text" size="50" maxlength="50" name="city" /> </p>

<p><strong>ZIP CODE:</strong><br />

            <input type="text" size="25" maxlength="50" name="zip" /> </p>

<p><strong>STATE:</strong><br />

            <input type="text" size="25" maxlength="50"  name="state"/> </p>

          <p><strong>TELEPHONE: </strong><br />

            <input type="text" size="25" maxlength="50"  name="telephone"/> </p>

          <p><strong>FAX: </strong><br />

            <input type="text" size="25" maxlength="50" name="fax"  /> </p>

<p><strong>EMAIL: </strong><br />

                <input type="text" size="25" maxlength="50" name="email"  /></p>

<p><strong>MESSAGE: </strong><br />

        <textarea rows="10" cols="50" name="request"></textarea><br/></p>

 

          <input type="submit" value="submit" name="submit"/> <Input type="reset" value="reset" name="reset"/>

 

        </form>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.