sql >> Database >  >> RDS >> Mysql

PHP drop-down die elk betrouwbaar zijn

U moet in dit geval met Ajax werken. Zonder de pagina te vernieuwen Als u een van de A-kolommen selecteert, krijgt u de overeenkomstige B-kolomwaarde. Bijvoorbeeld

<form method="post" name="form1">
 <table border="0" cellpadding="0" cellspacing="0" width="60%"><tbody>
  <tr>
   <td width="150">Country</td>
   <td width="150"><select style="background-color: #ffffa0" name="country" onchange="getState(this.value)"><option>Select Country</option><option value="1">USA</option><option value="2">Canada</option>       </select></td>
  </tr>
 <tr>
  <td>State</td>
  <td>
  <p id="statediv">
  <select style="background-color: #ffffa0" name="state"><option>Select Country First</option>       </select></td>
</tr>
<tr>
  <td>City</td>
  <td>
  <p id="citydiv">
  <select style="background-color: #ffffa0" name="city"><option>Select State First</option>       </select></td>
</tr>
</tbody></table>
</form>

Zoals je hierboven kunt zien, wordt in de onChage-gebeurtenis van het land de vervolgkeuzelijst getState()-functie van het javascript aangeroepen die de optiewaarden van de vervolgkeuzelijst State wijzigt, laten we eens kijken naar de code van de getState()-functie.

function getState(countryId)
{
   var strURL="findState.php?country="+countryId;
   var req = getXMLHTTP();
   if (req)
   {
     req.onreadystatechange = function()
     {
      if (req.readyState == 4)
      {
     // only if "OK"
     if (req.status == 200)
         {
        document.getElementById('statediv').innerHTML=req.responseText;
     } else {
       alert("There was a problem while using XMLHTTP:\n" + req.statusText);
     }
       }
      }
   req.open("GET", strURL, true);
   req.send(null);
   }
}

De code van het PHP-bestand findState.php, dat de opties vult in de vervolgkeuzelijst van de status die wordt opgehaald van Ajax, wordt hieronder gegeven

<? $country=intval($_GET['country']);
$link = mysql_connect('localhost', 'root', ''); //changet the configuration in required
if (!$link) {
    die('Could not connect: ' . mysql_error());
}
mysql_select_db('db_ajax');
$query="SELECT id,statename FROM state WHERE countryid='$country'";
$result=mysql_query($query);

?>
<select name="state" onchange="getCity(<?=$country?>,this.value)">
 <option>Select State</option>
  <? while($row=mysql_fetch_array($result)) { ?>
    <option value=<?=$row['id']?>><?=$row['statename']?></option>
  <? } ?>
</select>

In de bovenstaande vervolgkeuzelijst met status wordt de functie getCity() aangeroepen in de gebeurtenis onChage met de parameter countryId en stateId, laten we nu eens kijken naar de code van de functie getCity()

function getCity(countryId,stateId)
{
  var strURL="findCity.php?country="+countryId+"&state="+stateId;
  var req = getXMLHTTP();
  if (req)
  {
    req.onreadystatechange = function()
    {
      if (req.readyState == 4) // only if "OK"
      {
        if (req.status == 200)
        {
          document.getElementById('citydiv').innerHTML=req.responseText;
        } else {
          alert("There was a problem while using XMLHTTP:\n" + req.statusText);
        }
      }
    }
    req.open("GET", strURL, true);
    req.send(null);
  }
}

In de bovenstaande ajax-functie wordt findcity.php aangeroepen en dit PHP-bestand vult de stad dropdown volgens de opgegeven parameters land en staat van de get-methode. Laten we nu eens kijken naar de code van findcity.php,

<?php $countryId=intval($_GET['country']);
$stateId=intval($_GET['state']);
$link = mysql_connect('localhost', 'root', ''); //changet the configuration in required
if (!$link) {
    die('Could not connect: ' . mysql_error());
}
mysql_select_db('db_ajax');
$query="SELECT id,city FROM city WHERE countryid='$countryId' AND stateid='$stateId'";
$result=mysql_query($query);

?>
<select name="city">
 <option>Select City</option>
  <?php while($row=mysql_fetch_array($result)) { ?>
 <option value><?=$row['city']?></option>
<?php } ?>
</select>

En dat is alles, de drievoudige vervolgkeuzelijst van stad, land en staat die Ajax en PHP gebruikt, wordt gevuld.



  1. Een array invoegen in een enkele door MySQL voorbereide instructie met PHP en PDO

  2. Ontsnappende aanhalingstekens voor MySQL in python

  3. Google brengt continue x-as in kaart vanuit php-array

  4. Reguliere expressies in SQL Server-servers?