Jump to content

won't echo out text after space in textbox


benchew0904

Recommended Posts

I have some problem when I want to echo out a text which is retrieve from my database and place it inside a text box but it stops showing when there's a space.

If I echo it out outside of the textbox, then there's no problem.

 

May I know how to resolve this problem.

 

Thanks

ooppss..sorry, here is my code

                <form name ="form" method = "POST" action ="profile.php">
                    <table style="width: 65%">
                        <tr>
                            <td>Name</td>
                            <td><input type="text" name="name" value =<?php echo $name; ?> /> </td>
                        </tr>
                        <tr>
                            <td>Email</td>
                            <td><input type="text" name="email"  value=<?php echo $email; ?> ></td>
                        </tr>
                    </table>
                </form>

  Quote

See PFMaBiSmAd's reply regarding the quotes.

 

yep, i second that. OP what's happening is since you do not have quotes around the value attribute, the parser will include the text as the value until it encounters a space, which cuts the text. Text with spaces must be encased in quotes.

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.