Current location: Hot Scripts Forums » Programming Languages » PHP » echo in a form field


echo in a form field

Reply
  #1 (permalink)  
Old 08-25-03, 01:23 PM
tgarske tgarske is offline
Newbie Coder
 
Join Date: Aug 2003
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
echo in a form field

I'm trying to echo an address in a form field. However, it will only echo until it hits a space character. There are not constraints on the form. I'm wondering what’s causing it to stop on a space?

Example:
Address = 56423 Test Avenue
Result = 56423


echo "<td width=43% height=21 bgcolor=#E3E3E3><font size=1 face=Verdana,Helvetica,Arial color=#000080><input name=form_address size=20 value="; echo $line["address"]; echo"></font></td></tr>";
Reply With Quote
  #2 (permalink)  
Old 08-25-03, 04:12 PM
ermau's Avatar
ermau ermau is offline
Wannabe Coder
 
Join Date: Aug 2003
Location: Florida, USA
Posts: 240
Thanks: 0
Thanked 0 Times in 0 Posts
Because teh value of attributes in html NEED to be surrounded by quotes.

PHP Code:

echo '<td width="43%" height="21" bgcolor="#E3E3E3">

            <font size="1" face="Verdana,Helvetica,Arial" color="#000080"><input name="form_address" size="20" value="'
.$line['address'].'"></font>
      </td>
  </tr>'

__________________
PHP / mySQL Developer
Reply With Quote
  #3 (permalink)  
Old 08-25-03, 05:34 PM
tgarske tgarske is offline
Newbie Coder
 
Join Date: Aug 2003
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
Thanks, that worked
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
SQL database registration form help vinhkhuong PHP 3 10-10-03 03:49 AM
New Web Host, New Problem! justchat PHP 2 09-29-03 02:39 PM
edit php in Squirrelmail jrcortrightiii PHP 1 07-10-03 02:08 PM
not displaying the correct info sparky PHP 8 06-26-03 08:28 AM
problem in cookies @ phppro list vb2vb PHP 13 06-22-03 08:04 PM


All times are GMT -5. The time now is 05:38 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.