[PHP] Can anybody tell what is wrong with this file?

2002-03-12 Thread Balaji Ankem
Title: Message



Hi 
friend, I am using the browser 
Netscape 4.7. It z not 
displaying the select box..blindly displaying in text format.. (If u want to see 
open 
example.jpg)Example.html=!DOCTYPE html public 
"-//w3c//dtd html 4.0 
transitional//en"htmlbodytable 
tr 
 td width="19%" 
bgcolor="#DBF3DE"1/td 
 td width="15%" 
bgcolor="#DBF3DE"1/td 
 td width="14%" 
bgcolor="#DBF3DE"Raghu/td 
 td width="19%" 
bgcolor="#DBF3DE"Modem/td 
 td width="18%" 
bgcolor="#DBF3DE"8L_LT/td 
 td width="14%" 
bgcolor="#DBF3DE"W_SW150_1/td 
 td width="14%" 
bgcolor="#DBF3DE"NULL/td 
 td width="14%" 
bgcolor="#DBF3DE"NULL/td 
 td width="14%" 
bgcolor="#DBF3DE"Pending/td 
 
td 
 
 select 
name="change1" 
 
 
 option 
value=""SELECT/option 
 
 
 option 
value="Approved"Approved/option 
 
 
 option 
value="Rejected"Rejected/option 
 
 
/select 
 
/td 
 td width="14%" 
bgcolor="#DBF3DE" 
 
 form name="name_1" method="post" 
action="modify_status.php" 
 
 
 input type="submit" name="modify" 
value="SUBMIT" 
 
 
 input type="hidden" name="req_id" 
value="1" 
 
 
 input type="hidden" 
name="dev_tag" 
value="W_SW150_1" 
 
 
/formbr 
 
/td 
/tr/table/body/html= 

Thanks in advance
Balaji

**Disclaimer
  


Information contained in this E-MAIL being proprietary to Wipro Limited
is 'privileged' and 'confidential' and intended for use only by the
individual or entity to which it is addressed. You are notified that any
use, copying or dissemination of the information contained in the E-MAIL
in any manner whatsoever is strictly prohibited.



 



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] Can anybody tell what is wrong with this file?

2002-03-12 Thread Alexander Weber

Balaji Ankem wrote:
It z not displaying the select box..blindly displaying in text
format.. (If u want to see open example.jpg)

You have to use form tags. select tags are invalid if they are not
within form tags.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] Can anybody tell what is wrong with this file?

2002-03-12 Thread Brian Drexler

MessageYou need a form before the select.  Hope this helps.
  -Original Message-
  From: Balaji Ankem [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, March 12, 2002 4:13 AM
  To: 'Php-General'
  Subject: [PHP] Can anybody tell what is wrong with this file?


   H i friend,
  I am using the browser Netscape 4.7.

  It z not displaying the select box..blindly displaying in text format.. (If 
u want to see open example.jpg)
 
  Example.html
  =
  !DOCTYPE html public -//w3c//dtd html 4.0 transitional//en
  html
  body
  table
  tr
  td width=19% bgcolor=#DBF3DE1/td
  td width=15% bgcolor=#DBF3DE1/td
  td width=14% bgcolor=#DBF3DERaghu/td
  td width=19% bgcolor=#DBF3DEModem/td
  td width=18% bgcolor=#DBF3DE8L_LT/td
  td width=14% bgcolor=#DBF3DEW_SW150_1/td
  td width=14% bgcolor=#DBF3DENULL/td
  td width=14% bgcolor=#DBF3DENULL/td
  td width=14% bgcolor=#DBF3DEPending/td
  td
  select name=change1
  option value=SELECT/option
  option value=ApprovedApproved/option
  option value=RejectedRejected/option
  /select
  /td
  td width=14% bgcolor=#DBF3DE
  form name=name_1 method=post action=modify_status.php
  input type=submit name=modify value=SUBMIT
  input type=hidden name=req_id value=1
  input type=hidden name=dev_tag 
value=W_SW150_1
  /formbr
  /td
  /tr

  /table

  /body
  /html
  = 



  Thanks in advance

  Balaji