944,149 Members | Top Members by Rank

Ad:
  • PHP Discussion Thread
  • Unsolved
  • Views: 2849
  • PHP RSS
Feb 5th, 2007
0

How to use HTML tags in PHP

Expand Post »
I am tring to use HTML tags checkbox and textbox along with PHP.
When the checkbox is not checked,the textbox is disable.But when I checked the check box,the textbox should become enabled.

How can i do this?

Here is My code:-

html Syntax (Toggle Plain Text)
  1. <html>
  2. <head> THIS IS TEST
  3. <title> TEST </title>
  4. </head>
  5. <form>
  6. <body>
  7. CHECK BOX <input type="checkbox" name="htmlchk" value="chk"id="chk"><br>
  8. TEXT BOX <input type="text" id="txt"disabled="True">
  9. <?php
  10. if($chk.CHECKED=="true")
  11. {
  12. $txt.disable="False"
  13. }
  14. ?>
  15. </body>
  16. </form>
  17. </html>


Please help me as soon as possible.
Last edited by stymiee; Feb 5th, 2007 at 10:58 am. Reason: removed bold tags
Similar Threads
Reputation Points: 10
Solved Threads: 0
Newbie Poster
R.S.Chourasia is offline Offline
11 posts
since Feb 2007
Feb 5th, 2007
0

Re: How to use HTML tags in PHP

This is something you will want to do with JavaScript.
Moderator
Reputation Points: 161
Solved Threads: 38
He's No Good To Me Dead
stymiee is offline Offline
1,422 posts
since May 2006
Feb 5th, 2007
0

Re: How to use HTML tags in PHP

html Syntax (Toggle Plain Text)
  1. <html>
  2.  
  3. <head>
  4. <script language="javascript">
  5. function checkState()
  6. {
  7. document.testform.tf1.disabled = !document.testform.tf1.disabled;
  8. }
  9. </script>
  10. </head>
  11.  
  12. <body>
  13.  
  14. <form name="testform">
  15. <input name="cb1" value="test" type="checkbox" onClick="checkState()">
  16. <input name="tf1" value="test2" type="textfield" disabled="true">
  17. </form>
  18. </body>
  19. </html>
Reputation Points: 92
Solved Threads: 51
Practically a Posting Shark
Phaelax is offline Offline
856 posts
since Mar 2004
Feb 17th, 2007
0

Re: How to use HTML tags in PHP

Thanks Phaelax,
I got the code sent by you. And now my problem has been solved.
Reputation Points: 10
Solved Threads: 0
Newbie Poster
R.S.Chourasia is offline Offline
11 posts
since Feb 2007

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in PHP Forum Timeline: Issue with \' within content
Next Thread in PHP Forum Timeline: problem with session_start





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC