IT's something like that friend,

<html>
<head>
<title> New Document </title>
</head>

<body onload="hidelb();">
<script language="JavaScript">
<!--
  function hidelb()
  {
    o = document.all["lb1"];
    if (test.phone.selectedIndex==1)
      o.style.display = "none";
    else
      o.style.display = "";
  }
//-->
</script>
<form name="test">
<select name="phone" id="phone"
onchange="hidelb()"><option>Mobile</option><option>Test</option></select>
<select name="lb1" id="lb1"><option>1</option><option>2</option></select>
</form>
</body>
</html>

"Balaji Ankem" <[EMAIL PROTECTED]> wrote in message
006d01c13a90$193219e0$[EMAIL PROTECTED]">news:006d01c13a90$193219e0$[EMAIL PROTECTED]...
> 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" SELECTED>SELECT</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>
>
> </select>
>
> Item Type:
>       <select name="inv_type" STYLE="width : 120px" >
>
>         <option value="0" SELECTED>SELECT</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>
>
>       </select>
>
>
>  IMEI Number<input 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" SELECTED>SELECT</option>
>         <option value="stock">STOCK</option>
>         <option value="inuse">IN 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]

Reply via email to