Jump to content

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>

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.

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.