PHP array to generate HTML drop-down list method, PHP array HTML drop-down _php tutorial

Source: Internet
Author: User

PHP array to generate HTML drop-down list method, PHP array HTML dropdown


The example in this article describes how the PHP array generates HTML drop-down lists. Share to everyone for your reference. Specific as follows:

This code dynamically generates an HTML drop-down list (select) based on a well-defined PHP array.

<?php//array Contents Array 1:: value $myArray 1 = array (' Cat ', ' Mat ', ' Fat ', ' Hat '); Array Contents array 2:: Key = value $myArray 2 = Array (' c ' = = ' Cat ', ' m ' = = ' Mat ', ' f ' = = ' Fat ', ' h ' = ' Hat '); Values from array 1 echo ''; For each value of the array assign a variable name word foreach ($myArray 1 as $word) {   echo ''. $word. '; } Echo ''; Values from array 2 echo ''; For each key of the array assign a variable name to//for each value of the array assign a variable name word foreach ($ MyArray2 as $let = $word) {   echo ''. $word. '; } Echo '';?>

I hope this article is helpful to everyone's PHP programming.

http://www.bkjia.com/PHPjc/1035664.html www.bkjia.com true http://www.bkjia.com/PHPjc/1035664.html techarticle PHP array to generate HTML drop-down list of methods, PHP array HTML drop-down this article describes the PHP array to generate HTML drop-down list method. Share to everyone for your reference. As follows: This paragraph ...

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.