[PHP] Problem regarding select boxes

2001-09-11 Thread Balaji Ankem

Hi! friend,
   I had one html form .
   In that i had 5 inputs.
   First option is a select box.
   If the selected item is Mobile then only i want to display  second and
third input boxes. Otherwise i want to hide those two options.

How can i endure that?

Please give the solution to this problem.

Thanks and regards
-Balaji

Here i am sending the file..



!DOCTYPE html public -//w3c//dtd html 4.0 transitional//en
html
head
META HTTP-EQUIV=Refresh
content=120;URL=http://localhost/imac/addinventory.php;


script language=Javascript


function check(){

  if(document.addinv.inv_name.options[0].selected)
   {
   alert('Please select the item name');
   document.addinv.inv_name.focus();
   return false;
  }
  else if(document.addinv.inv_type.options[0].selected)
   {
   alert('Please select the item type');
   document.addinv.inv_type.focus();
   return false;
  }


  else if (document.addinv.inv_tag.value=='' ||
document.addinv.inv_tag.value=='0')
  {
 alert('Inventory tag is required and it must start with
alphabet.Please try again');
 document.addinv.inv_tag.focus();
 return false;

  }


  else
  { document.addinv.method = POST;
 document.addinv.action=add_inv.php;
 document.addinv.submit();
 return true;
  }
   }

/script
/head

body background=imacbg1.gif ONLOAD=document.addinv.inv_name.focus() 

   center h1 ADD INVENTORY ITEM /h1/center
 ! Get current time and date 
   ?php$today = date(Y:m:d h:i:s); ?
center

  h3 TIME STAMP: ?php echo $today; ? /h3
 form name=addinv 

 Item Name :
 select name=inv_name STYLE=width : 120px

option value=0 SELECTEDSELECT/option
  option value=MobileMobile/option
  option value=SIMSIM/option
  option value=Data CableData Cable/option
  option value=ChargerCharger/option
  option value=Power SupplyPower Supply/option

/select

Item Type:
  select name=inv_type STYLE=width : 120px 

option value=0 SELECTEDSELECT/option
   option value=PTX520PTX520/option
   option value=PTX438PTX438/option
   option value=J5J5/option
   option value=J6J6/option
   option value=Z5Z5/option

  /select


 IMEI Numberinput type=text name=inv_imei size=15 value=

 Item Tag   input type=text name=inv_tag size=15 value=

 Status select name=inv_status STYLE=width : 120px
option value=0 SELECTEDSELECT/option
option value=stockSTOCK/option
option value=inuseIN USE/option
/select

  input type=button Value=ADD OnClick=check();/td
/form
/center
/body/html



If  Item name is Mobile then only we can enter type and IMEI...otherwise i
want to hide and i will insert blank values in to the database.


Thanks in advance.

Regards
-Balaji




--
Information transmitted by this E-MAIL is proprietary to Wipro and/or its Customers
and is intended for use only by the individual or entity to which it is
addressed, and may contain information that is privileged, confidential or
exempt from disclosure under applicable law. If you are not the intended
recipient or it appears that this mail has been forwarded to you without
proper authority, you are notified that any use or dissemination of this
information in any manner is strictly prohibited. In such cases, please
notify us immediately at mailto:[EMAIL PROTECTED] and delete this mail
from your records.
-



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


Re: [PHP] Problem regarding select boxes

2001-09-11 Thread nayco

Try something like

 script language=JavaScript
if (inv_name.value=='mobile')
{
inv_imei.style.visibility=visible; .

based on CSS and JS !!!
but this is VERY fast written and may only work on IE, not NS .



(°-Nayco,
//\[EMAIL PROTECTED]
v_/_ http://nayco.free.fr


- Original Message -
From: Balaji Ankem [EMAIL PROTECTED]
To: Renze Munnik [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Tuesday, September 11, 2001 9:05 AM
Subject: [PHP] Problem regarding select boxes


 Hi! friend,
I had one html form .
In that i had 5 inputs.
First option is a select box.
If the selected item is Mobile then only i want to display  second and
 third input boxes. Otherwise i want to hide those two options.

 How can i endure that?

 Please give the solution to this problem.

 Thanks and regards
 -Balaji

 Here i am sending the file..

 

 !DOCTYPE html public -//w3c//dtd html 4.0 transitional//en
 html
 head
 META HTTP-EQUIV=Refresh
 content=120;URL=http://localhost/imac/addinventory.php;


 script language=Javascript


 function check(){

   if(document.addinv.inv_name.options[0].selected)
{
alert('Please select the item name');
document.addinv.inv_name.focus();
return false;
   }
   else if(document.addinv.inv_type.options[0].selected)
{
alert('Please select the item type');
document.addinv.inv_type.focus();
return false;
   }


   else if (document.addinv.inv_tag.value=='' ||
 document.addinv.inv_tag.value=='0')
   {
  alert('Inventory tag is required and it must start with
 alphabet.Please try again');
  document.addinv.inv_tag.focus();
  return false;

   }


   else
   { document.addinv.method = POST;
  document.addinv.action=add_inv.php;
  document.addinv.submit();
  return true;
   }
}

 /script
 /head

 body background=imacbg1.gif ONLOAD=document.addinv.inv_name.focus() 

center h1 ADD INVENTORY ITEM /h1/center
  ! Get current time and date 
?php$today = date(Y:m:d h:i:s); ?
 center

   h3 TIME STAMP: ?php echo $today; ? /h3
  form name=addinv 

  Item Name :
  select name=inv_name STYLE=width : 120px

 option value=0 SELECTEDSELECT/option
   option value=MobileMobile/option
   option value=SIMSIM/option
   option value=Data CableData Cable/option
   option value=ChargerCharger/option
   option value=Power SupplyPower Supply/option

 /select

 Item Type:
   select name=inv_type STYLE=width : 120px 

 option value=0 SELECTEDSELECT/option
option value=PTX520PTX520/option
option value=PTX438PTX438/option
option value=J5J5/option
option value=J6J6/option
option value=Z5Z5/option

   /select


  IMEI Numberinput type=text name=inv_imei size=15 value=

  Item Tag   input type=text name=inv_tag size=15 value=

  Status select name=inv_status STYLE=width : 120px
 option value=0 SELECTEDSELECT/option
 option value=stockSTOCK/option
 option value=inuseIN USE/option
 /select

   input type=button Value=ADD OnClick=check();/td
 /form
 /center
 /body/html

 

 If  Item name is Mobile then only we can enter type and IMEI...otherwise i
 want to hide and i will insert blank values in to the database.


 Thanks in advance.

 Regards
 -Balaji








 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Problem regarding select boxes

2001-09-11 Thread Balaji Ankem



Hi! friend, I had one html form 
. In that i had 5 inputs. First input  is 
a select box. If the selected item in first input is 
Mobile then only i want to display second andthird 
input boxes. Otherwise i want to hide those two options.How can i endure 
that?Please give the solution to this problem.Here i am sending 
the 
file..!DOCTYPE 
html public "-//w3c//dtd html 4.0 
transitional//en"htmlheadMETA 
HTTP-EQUIV="Refresh"content="120;URL=http://localhost/imac/addinventory.php"script 
language="Javascript"function 
check(){ 
if(document.addinv.inv_name.options[0].selected) 
{ alert('Please select the item name'); 
document.addinv.inv_name.focus(); return 
false; } 
else if(document.addinv.inv_type.options[0].selected) 
{ alert('Please select the item type'); 
document.addinv.inv_type.focus(); return 
false; 
} else if 
(document.addinv.inv_tag.value=='' 
||document.addinv.inv_tag.value=='0') 
{ 
alert('Inventory tag is required and it must start withalphabet.Please try 
again'); 
document.addinv.inv_tag.focus(); 
return false; 
} 
else 
{ document.addinv.method = 
"POST"; 
document.addinv.action="add_inv.php"; 
document.addinv.submit(); 
return true; } 
}/script/headbody 
background="imacbg1.gif"  
 center h1 ADD INVENTORY ITEM 
/h1/center ! Get current time 
and date  
?php $today = date("Y:m:d h:i:s"); 
?center 
h3 TIME STAMP: ?php echo $today; ? /h3form 
name="addinv" Item Name 
: select name="inv_name" STYLE="width : 
120px" option value="0" 
SELECTEDSELECT/option option 
value="Mobile"Mobile/option 
option value="SIM"SIM/option 
option value="Data Cable"Data 
Cable/option option 
value="Charger"Charger/option 
option value="Power Supply"Power 
Supply/option/selectItem Type: select 
name="inv_type" STYLE="width : 120px" 
 option value="0" 
SELECTEDSELECT/option 
option 
value="PTX520"PTX520/option 
option 
value="PTX438"PTX438/option 
option 
value="J5"J5/option 
option 
value="J6"J6/option 
option value="Z5"Z5/option 
/selectIMEI Numberinput type="text" 
name="inv_imei" size="15" value=""Item Tag 
input type="text" name="inv_tag" size="15" 
value=""Status select 
name="inv_status" STYLE="width : 
120px" option value="0" 
SELECTEDSELECT/option 
option 
value="stock"STOCK/option 
option value="inuse"IN 
USE/option 
/select input type="button" Value="ADD" 
/td/form/center/body/htmlIf 
Item name is Mobile then only we can enter type and IMEI...otherwise iwant 
to hide and i will insert blank values in to the database.please help out me.
Thanks in 
advance.Regards-Balaji


--
Information transmitted by this E-MAIL is proprietary to Wipro and/or its Customers
and is intended for use only by the individual or entity to which it is
addressed, and may contain information that is privileged, confidential or
exempt from disclosure under applicable law. If you are not the intended
recipient or it appears that this mail has been forwarded to you without
proper authority, you are notified that any use or dissemination of this
information in any manner is strictly prohibited. In such cases, please
notify us immediately at mailto:[EMAIL PROTECTED] and delete this mail
from your records.
-



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]


Re: [PHP] Problem regarding select boxes

2001-09-11 Thread David Robley

On Tue, 11 Sep 2001 17:35, Balaji Ankem wrote:
 Hi! friend,
I had one html form .
In that i had 5 inputs.
First  input  is a select box.
If the selected item in first input is Mobile then only i want to
 display  second and third input boxes. Otherwise i want to hide those
 two options.

SNIP script and 97 footers

I think you only just posted this an hour ago - and there has been at 
least one answer since. How about waiting a little while for a response. 
Not everybody is just sitting there ready and waiting to solve your 
problem.

-- 
David Robley  Techno-JoaT, Web Maintainer, Mail List Admin, etc
CENTRE FOR INJURY STUDIES  Flinders University, SOUTH AUSTRALIA  

   Mary had a little RAM -- only about a MEG or so.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]