Actual nude model photography scene PHP pull-down menu to the right to implement the code, in use for testing

WBOY
Release: 2016-07-29 08:41:07
Original
1198 people have browsed it

This is modified from the asp secondary side pull-down menu

Copy the code The code is as follows:








    require('../Connections/lr.php');
    mysql_select_db($database_lr, $lr);
    $query = mysql_query("SELECT * FROM bigclass order by sort");
    $j=0;
    while($row=mysql_fetch_array($query))
    {$j=$j+1;
    $bigclassid=$row['bigclassid'];
    $bigclassname_leftmenu= $row['bigclassname'];
    if ($htmlname==1){
    $bigclass_htmlname_leftmenu=$bigclassname_leftmenu;//Big class name
    if (substr_count($bigclass_htmlname_leftmenu," ")>0){
    $bigclass_htmlname_leftmenu= str_replace(" ","-",$bigclass_htmlname_leftmenu);
    }
    }
    if ($htmlname==0){
    $bigclass_htmlname_leftmenu=$bigclassid;
    }
    ?>


    • mysql_select_db($database_lr, $lr);
      $query_small = mysql_query( "SELECT * FROM smallclass where bigclassid='$bigclassid' order by sort");
      while($rs=mysql_fetch_array($query_small))
      {
      $smallclassid_small_leftmenu=$rs['smallclassid'];
      $smallclassname_small=$rs ['smallclassname'];//Small class name
      if ($htmlname==1){
      $smallclass_htmlname=$smallclassname_small;
      if (substr_count($smallclass_htmlname," ")>0){
      $smallclass_htmlname= str_replace( " ","-",$smallclass_htmlname);
      }
      }
      if ($htmlname==0){
      $smallclass_htmlname=$smallclassid_small_leftmenu;
      }
      ?>

    • } ?>


  • } ?>


The above introduces the PHP right-side pull-down menu implementation code for real-life nude model photography scenes. It is being tested and used, including the content of real-life nude model photography scenes. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!