-
php echoing an html form
I'm using the code:
echo htmlspecialchars("<form name="chat"action="chat_new.php"method="GET">");
echo htmlspecialchars("<input type="text" name="tosay">");
echo htmlspecialchars("<input type="submit"value="Submit" >"));
echo htmlspecialchars("<textarea cols="23" rows="1"name="name1">" . $un ."</textarea>");
echo htmlspecialchars("</form>");
to print an html form. when i run the page, it is blank, including all the rest of the code on the page
-
does anybody have any ideas?
-
please any help here on this specific method or another method to put the contents of a php variable into a texbox would be greatly appreciated.
-
Why are you using htmlspecialchars? Maybe I have no clue what I am doing, but what are all the '"'s for too.
I havent ever used htmlspecialchars, but is is possible that you need to escape the ; characters ?
please any help here on this specific method or another method to put the contents of a php variable into a texbox would be greatly appreciated.
You don't need a special method to put text in a text box. When you load the page, just have your php code echo its variable value into the value variable of a text box.
So it would look like this
PHP Code:
$variable = "whatever you want it to";
echo '<input type=text value=' . $variable . ' >';
I use single quotes around the html so I dont have to mess with escaping the special characters.
Hope this helps
-
That looks good but then how do i make that textbox part of a form?
-
nvm I got it. tyvm. i don't have any idea what i was doin with the htmlspecialchars and '"' s. lol anyway ty.
Similar Threads
-
Replies: 0
Last Post: 01-05-2006, 12:57 PM
-
By kashif_82 in forum ASP.NET
Replies: 3
Last Post: 06-10-2005, 12:52 PM
-
By Simon Jessop in forum ASP.NET
Replies: 0
Last Post: 01-13-2002, 01:11 PM
-
By Candy in forum ASP.NET
Replies: 3
Last Post: 11-23-2001, 05:59 PM
-
By Mark Alexander Bertenshaw in forum VB Classic
Replies: 0
Last Post: 03-16-2000, 01:14 PM
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Development Centers
-- Android Development Center
-- Cloud Development Project Center
-- HTML5 Development Center
-- Windows Mobile Development Center
|