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

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>";

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.