Echoing forms.

This is a discussion on "Echoing forms." within the PHP Forum section. This forum, and the thread "Echoing forms. are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > PHP Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Jul 30th, 2007, 23:28
Reputable Member
Join Date: Sep 2006
Location: England
Age: 20
Posts: 144
Thanks: 0
Thanked 0 Times in 0 Posts
Echoing forms.

PHP: Select all

echo ("<b>Direct URL</b>: <input value=\"<img src=\"www.link.com/cards\" .$username>\" type=\"text\"><br>"); 

I've messed this up somewhat, I need it to display the url of

<img src="www.links.com/cards/$username.png">

In the form output, thanks for any help

Last edited by PicoDeath; Jul 30th, 2007 at 23:36.
Reply With Quote

  #2 (permalink)  
Old Jul 30th, 2007, 23:47
Reputable Member
Join Date: Apr 2007
Location: Scotland
Age: 17
Posts: 233
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Blake121
Re: Echoing forms.

Try this. It should work.

PHP: Select all

echo ("<b>Direct URL</b>: <input type='text' value='&lt;img src=\"www.link.com/cards/$username.png\"&gt;'<br>"); 

You need use html entities e.g. &lt; and &gt; instead of <'s so that the browser doesn't try and carry out the HTML.

Also use single quotes instead of escaping all your double ones. They make it really hard to read.
Reply With Quote
  #3 (permalink)  
Old Jul 30th, 2007, 23:50
Reputable Member
Join Date: Sep 2006
Location: England
Age: 20
Posts: 144
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Echoing forms.

Yeah looks alot better now and i never knew about the &lt; & &gt;, I swear i done it a different way before.

Thanks for the help!
Reply With Quote
Reply

Tags
forms, echo

Thread Tools

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 On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Forms crackafaza Web Page Design 3 Aug 13th, 2007 02:16
Forms acrikey Web Page Design 13 Aug 6th, 2007 21:31
JS and Forms roki13 JavaScript Forum 1 Jun 6th, 2007 15:28
forms mickc90 PHP Forum 3 Aug 1st, 2006 22:06
forms atomicant_2005 JavaScript Forum 15 Dec 9th, 2005 16:09


All times are GMT. The time now is 07:35.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43