Jump to content

[SOLVED] variable in form


richardbeaumont

Recommended Posts

here is my code.

 

the first echo is just to prove that the variable appears fine when it is not in the form, the second is where the variable is the value for the form field.

 

 

<!--

echo $rowcomp;

echo "<form enctype='multipart/form-data' action='reviewform.php' method='post' target='_blank'><input type='text' value="; echo $rowcomp; echo "  name='company'><p id='alignright'>Add you own review: <input type='submit' value='Click Here'/>

</form></p>";

 

--!>

When the variable has a vlaue 'Company Name' I get this:

 

Company Name [Company  ]  (square brackets for the form field)

 

In other words if there is a space in the value of the variable, only the first part appears - and when I submit the form - the post comes out with just the first half.

 

Any help appreciated.

 

Richard

Link to comment
Share on other sites

Try

 


echo $rowcomp;
echo "<form enctype='multipart/form-data' action='reviewform.php' method='post' target='_blank'>
<input type='text' value='" . $rowcomp . "'  name='company'>
<p id='alignright'>Add you own review: <input type='submit' value='Click Here'/>
</form></p>";

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.