实例介绍
【实例简介】PHP与MySQL程序设计第四版Pdf与源码
《PHP与MySQL程序设计 第4版 》pdf与源码 是全面讲述PHP与MySQL的经典之作 书中不但全面介绍了两种技术的核心特性 还讲解了如何高效地结合这两种技术构建健壮的数据驱动的应用程序 《PHP与MySQL程序设计 第4版 》...
├── PHP_and MySQL_IV_Code.zip
├── README.txt
├── ch01 - Introducing PHP
│ └── validstatements.php
├── ch02 - Configuring Your Environment
│ └── phpinfo.php
├── ch03 - PHP Basics
│ ├── aspstyle.php
│ ├── break.php
│ ├── continue.php
│ ├── converttofloat.php
│ ├── defaultsyntax.php
│ ├── define.php
│ ├── dowhile.php
│ ├── echo.php
│ ├── for.php
│ ├── foreach.php
│ ├── foreach2.php
│ ├── globalvariables.php
│ ├── heredoc.php
│ ├── if.php
│ ├── ifelse.php
│ ├── ifelseif.php
│ ├── isname.php
│ ├── localvariables.php
│ ├── multiplecodeblocks.php
│ ├── multiplelinecomments.php
│ ├── printf.php
│ ├── printf2.php
│ ├── shellstylecomments.php
│ ├── shortcircuitsyntax.php
│ ├── shorttags.php
│ ├── singlelinecomments.php
│ ├── sprintf.php
│ ├── staticvariables.php
│ ├── superglobalvariables.php
│ └── while.php
├── ch04 - Functions
│ ├── creatingfunction.php
│ ├── defaultargumentvalues.php
│ ├── invokefunction.php
│ ├── optionalarguments.php
│ ├── passargumentsbyreference.php
│ ├── passargumentsbyvalue.php
│ ├── recursivefunctions.php
│ └── returnmultiplevalues.php
├── ch05 - Arrays
│ ├── Thumbs.db
│ ├── array-count-values.php
│ ├── array_chunk.php
│ ├── array_combine.php
│ ├── array_diff.php
│ ├── array_diff_assoc.php
│ ├── array_intersect.php
│ ├── array_intersect_assoc.php
│ ├── array_merge.php
│ ├── array_merge_recursive.php
│ ├── array_multisort.php
│ ├── array_rand.php
│ ├── array_slice.php
│ ├── array_splice.php
│ ├── array_sum.php
│ ├── arrayflip.php
│ ├── arrayreverse-preserve.php
│ ├── arrayreverse.php
│ ├── arrayunique.php
│ ├── arsort.php
│ ├── count.php
│ ├── key.php
│ ├── listing5-1.html
│ ├── output_array.php
│ ├── rsort.php
│ ├── shuffle.php
│ ├── sort.php
│ ├── submitdata.php
│ └── usort.php
├── ch06 - Object-Oriented PHP
│ ├── book.php
│ ├── destructors.php
│ ├── invoking-parent-constructors.php
│ ├── listing6-1.php
│ └── static-class-members.php
├── ch07 - Advanced OOP Features
│ ├── late_static_binding.php
│ ├── listing7-1.php
│ ├── listing7-2.php
│ ├── listing7-3.php
│ ├── listing7-4.php
│ ├── listing7-5.php
│ ├── listing7-6.php
│ └── listing7-7.php
├── ch08 - Errors and Exception Handling
│ ├── listing8-1.php
│ ├── listing8-2.php
│ └── listing8-3.php
├── ch09 - Strings and Regular Expressions
│ ├── count_chars.php
│ ├── curly-offset-syntax.php
│ ├── ereg-2.php
│ ├── ereg.php
│ ├── ereg_replace-2.php
│ ├── ereg_replace.php
│ ├── eregi.php
│ ├── explode.php
│ ├── get_html_translation_table-2.php
│ ├── get_html_translation_table.php
│ ├── htmlentities.php
│ ├── htmlspecialchars.php
│ ├── implode.php
│ ├── nl2br.php
│ ├── parse_str.php
│ ├── pear-validate_us.php
│ ├── preg_grep.php
│ ├── preg_match.php
│ ├── preg_match_all.php
│ ├── preg_quote.php
│ ├── preg_replace-2.php
│ ├── preg_replace.php
│ ├── preg_replace_callback.php
│ ├── preg_split.php
│ ├── split.php
│ ├── sql_regcase.php
│ ├── str_pad-2.php
│ ├── str_pad.php
│ ├── str_replace.php
│ ├── str_word_count-2.php
│ ├── str_word_count.php
│ ├── strcasecmp.php
│ ├── strcmp.php
│ ├── strcspn.php
│ ├── strip_tags-2.php
│ ├── strip_tags.php
│ ├── strlen.php
│ ├── strpos.php
│ ├── strrpos.php
│ ├── strspn.php
│ ├── strstr.php
│ ├── strtok.php
│ ├── strtolower.php
│ ├── strtoupper.php
│ ├── strtr.php
│ ├── substr-2.php
│ ├── substr-3.php
│ ├── substr.php
│ ├── substr_count.php
│ ├── substr_replace.php
│ ├── ucfirst.php
│ └── ucwords.php
├── ch10 - Working with the File and Operating System
│ ├── basename.php
│ ├── dirname.php
│ ├── disk_free_space.php
│ ├── disk_total_space.php
│ ├── feof.php
│ ├── fgetcsv.php
│ ├── fgets.php
│ ├── fgetss.php
│ ├── file.php
│ ├── file_get_contents.php
│ ├── fileatime.php
│ ├── filectime.php
│ ├── filegroup.php
│ ├── filemtime.php
│ ├── fileowner.php
│ ├── fileperms.php
│ ├── filesize.php
│ ├── fread.php
│ ├── fscanf.php
│ ├── fwrite.php
│ ├── listing10-1.php
│ ├── listing10-2.php
│ ├── pathinfo.php
│ ├── readdir.php
│ ├── readfile.php
│ ├── realpath.php
│ ├── scandir.php
│ ├── socsecurity.txt
│ ├── symlink.php
│ └── users.txt
├── ch11 - PEAR
│ └── pear-numbers_roman.php
├── ch12 - Date and Time
│ ├── adddays.php
│ ├── addmonths.php
│ ├── addweeks.php
│ ├── addyears.php
│ ├── calculate-number-days-from-date.php
│ ├── checkdate.php
│ ├── getarray.php
│ ├── getdayofyear.php
│ ├── getisoweekofyear.php
│ ├── getlastmod.php
│ ├── gettimeofday.php
│ ├── getweekday.php
│ ├── getweekofyear.php
│ ├── isleap.php
│ ├── mktime.php
│ ├── number-days-any-month.php
│ ├── number-days-current-month.php
│ ├── setFirstDow.php
│ ├── setLastDow.php
│ ├── setToLastMonthDay.php
│ ├── strftime.php
│ ├── subdays.php
│ ├── submonths.php
│ ├── subweeks.php
│ └── subyears.php
├── ch13 - Forms
│ ├── create_dropdown.php
│ ├── javascript.html
│ ├── listing13-1.php
│ ├── logins.sql
│ ├── multivalue-forms.php
│ ├── simpleexample.php
│ └── subscribe.php
├── ch14 - Authenticating Your Users
│ ├── authenticationFile.txt
│ ├── listing14-1.php
│ ├── listing14-10.php
│ ├── listing14-11.php
│ ├── listing14-2.php
│ ├── listing14-4.php
│ ├── listing14-6.php
│ ├── listing14-7.php
│ ├── listing14-8.php
│ └── listing14-9.php
├── ch15 - Handling File Uploads
│ ├── listing15-1.php
│ ├── listing15-2.php
│ ├── listing15-3.php
│ ├── uploadmanager.html
│ └── uploadmanager.php
├── ch16 - Networking
│ ├── checkdnsrr-2.php
│ ├── checkdnsrr.php
│ ├── dnsgetrecord-2.php
│ ├── dnsgetrecord.php
│ ├── fsockopen.php
│ ├── getmxrr.php
│ ├── getservbyname.php
│ ├── getservbyport.php
│ ├── listing16-1.php
│ ├── listing16-2.php
│ ├── listing16-3.php
│ ├── listing16-4.php
│ ├── pear-htmlMimeMail-attachment.php
│ ├── pingserver.php
│ ├── portscanner.php
│ ├── send-email-multiple-recipients-2.php
│ ├── send-email-with-headers.php
│ ├── send-html-email.php
│ ├── send-mail-multiple-recipients.php
│ ├── send-plaintext-email.php
│ └── userbandwidth.php
├── ch17 - PHP and LDAP
│ ├── ldap_add.php
│ ├── ldap_bind.php
│ ├── ldap_compare.php
│ ├── ldap_connect.php
│ ├── ldap_count_entries.php
│ ├── ldap_dn2ufn.php
│ ├── ldap_explode_dn.php
│ ├── ldap_first_attribute.php
│ ├── ldap_first_entry.php
│ ├── ldap_free_result.php
│ ├── ldap_get_attributes.php
│ ├── ldap_get_dn.php
│ ├── ldap_get_entries.php
│ ├── ldap_get_values.php
│ ├── ldap_next_attribute.php
│ ├── ldap_next_entry.php
│ ├── ldap_read.php
│ ├── ldap_sort.php
│ ├── ldap_start_tls.php
│ └── ldap_unbind.php
├── ch18 - Session Handlers
│ ├── create_session_variable.php
│ ├── delete_session_variable.php
│ ├── listing18-1.php
│ ├── listing18-1.sql
│ ├── listing18-2.php
│ ├── listing18-3.html
│ ├── recent_view_documents.php
│ ├── session_decode.php
│ ├── session_id.php
│ └── sessioninfo.sql
├── ch19 - Templating with Smarty
│ ├── listing19-1.tpl
│ ├── listing19-2.php
│ ├── listing19-3.php
│ ├── listing19-4.php
│ ├── modify-smarty-dirs.php
│ └── multiple-caches-per-template.php
├── ch20 - Web Services
│ ├── blog.xml
│ └── listing20-2.php
├── ch21 - Secure PHP Programming
│ ├── mcrypt_encrypt.php
│ ├── md5.php
│ └── mhash.php
├── ch22 - AJAX
│ ├── listing22-1.php
│ ├── listing22-2.php
│ └── listing22-3.php
├── ch23 - Building Web Sites for the World
│ ├── listing23_1.php
│ ├── setlocale.php
│ └── strftime.php
├── ch24 - MVC and the Zend Framework
│ ├── ContactsController.php
│ └── contacts.sql
├── ch25 - Introducing MySQL
│ └── README.txt
├── ch26 - Installing and Configuring MySQL
│ └── README.txt
├── ch27 - The Many MySQL Clients
│ └── README.txt
├── ch28 - MySQL Storage Engines and Datatypes
│ └── README.txt
├── ch29 - Securing MySQL
│ └── README.txt
├── ch30 - Using PHP with MySQL
│ ├── listing30_1.php
│ ├── listing30_2.php
│ ├── prepared_statement.php
│ ├── products.sql
│ ├── recuperate_memory.php
│ └── retrieving_data.php
├── ch31 - Introducing PDO
│ ├── bindcolumn.php
│ ├── bindparam.php
│ ├── columncount.php
│ ├── execute.php
│ ├── fetch.php
│ ├── fetchall.php
│ ├── fetchcolumn.php
│ ├── products.sql
│ └── query.php
├── ch32 - Stored Routines
│ ├── calculate_bonus.sp
│ ├── get_employees.sp
│ ├── iterate.sp
│ ├── listing32_1.php
│ ├── listing32_2.php
│ ├── retrieve_multiple_rows.php
│ ├── service_info.sp
│ └── while.php
├── ch33 - MySQL Triggers
│ ├── helpdesk.trigger
│ └── listing33_1.php
├── ch34 - MySQL Views
│ ├── employee_contact_info.view
│ ├── employee_contact_info_v2.view
│ ├── employees.sql
│ └── execute_view_in_php.php
├── ch35 - Practical Database Queries
│ ├── calculate_bonus.sql
│ ├── cursor.php
│ ├── listing35-1.php
│ ├── listing35-2.php
│ ├── member_to_vehicle.sql
│ ├── products.sql
│ ├── sales.sql
│ ├── subquery.php
│ └── vehicles.sql
├── ch36 - Indexes and Searching
│ ├── bookmarks.sql
│ ├── bookmarks_fulltext.sql
│ ├── bookmarks_v2.sql
│ ├── bookmarks_v3.sql
│ ├── bookmarks_v4.sql
│ ├── employees.sql
│ ├── employees_v2.sql
│ ├── employees_v3.sql
│ ├── listing36_3.php
│ ├── searchextended.php
│ └── simplesearch.php
├── ch37 - Transactions
│ ├── customers.sql
│ ├── listing37_1.php
│ ├── participants.sql
│ └── trunks.php
├── ch38 - Importing and Exporting Data
│ ├── load_table_data_with_php.php
│ └── sales1.sql
└── 好例子网_PHP与MySQL程序设计第四版Pdf与源码.rar
38 directories, 348 files
《PHP与MySQL程序设计 第4版 》pdf与源码 是全面讲述PHP与MySQL的经典之作 书中不但全面介绍了两种技术的核心特性 还讲解了如何高效地结合这两种技术构建健壮的数据驱动的应用程序 《PHP与MySQL程序设计 第4版 》...
【实例截图】
├── PHP_and MySQL_IV_Code.zip
├── README.txt
├── ch01 - Introducing PHP
│ └── validstatements.php
├── ch02 - Configuring Your Environment
│ └── phpinfo.php
├── ch03 - PHP Basics
│ ├── aspstyle.php
│ ├── break.php
│ ├── continue.php
│ ├── converttofloat.php
│ ├── defaultsyntax.php
│ ├── define.php
│ ├── dowhile.php
│ ├── echo.php
│ ├── for.php
│ ├── foreach.php
│ ├── foreach2.php
│ ├── globalvariables.php
│ ├── heredoc.php
│ ├── if.php
│ ├── ifelse.php
│ ├── ifelseif.php
│ ├── isname.php
│ ├── localvariables.php
│ ├── multiplecodeblocks.php
│ ├── multiplelinecomments.php
│ ├── printf.php
│ ├── printf2.php
│ ├── shellstylecomments.php
│ ├── shortcircuitsyntax.php
│ ├── shorttags.php
│ ├── singlelinecomments.php
│ ├── sprintf.php
│ ├── staticvariables.php
│ ├── superglobalvariables.php
│ └── while.php
├── ch04 - Functions
│ ├── creatingfunction.php
│ ├── defaultargumentvalues.php
│ ├── invokefunction.php
│ ├── optionalarguments.php
│ ├── passargumentsbyreference.php
│ ├── passargumentsbyvalue.php
│ ├── recursivefunctions.php
│ └── returnmultiplevalues.php
├── ch05 - Arrays
│ ├── Thumbs.db
│ ├── array-count-values.php
│ ├── array_chunk.php
│ ├── array_combine.php
│ ├── array_diff.php
│ ├── array_diff_assoc.php
│ ├── array_intersect.php
│ ├── array_intersect_assoc.php
│ ├── array_merge.php
│ ├── array_merge_recursive.php
│ ├── array_multisort.php
│ ├── array_rand.php
│ ├── array_slice.php
│ ├── array_splice.php
│ ├── array_sum.php
│ ├── arrayflip.php
│ ├── arrayreverse-preserve.php
│ ├── arrayreverse.php
│ ├── arrayunique.php
│ ├── arsort.php
│ ├── count.php
│ ├── key.php
│ ├── listing5-1.html
│ ├── output_array.php
│ ├── rsort.php
│ ├── shuffle.php
│ ├── sort.php
│ ├── submitdata.php
│ └── usort.php
├── ch06 - Object-Oriented PHP
│ ├── book.php
│ ├── destructors.php
│ ├── invoking-parent-constructors.php
│ ├── listing6-1.php
│ └── static-class-members.php
├── ch07 - Advanced OOP Features
│ ├── late_static_binding.php
│ ├── listing7-1.php
│ ├── listing7-2.php
│ ├── listing7-3.php
│ ├── listing7-4.php
│ ├── listing7-5.php
│ ├── listing7-6.php
│ └── listing7-7.php
├── ch08 - Errors and Exception Handling
│ ├── listing8-1.php
│ ├── listing8-2.php
│ └── listing8-3.php
├── ch09 - Strings and Regular Expressions
│ ├── count_chars.php
│ ├── curly-offset-syntax.php
│ ├── ereg-2.php
│ ├── ereg.php
│ ├── ereg_replace-2.php
│ ├── ereg_replace.php
│ ├── eregi.php
│ ├── explode.php
│ ├── get_html_translation_table-2.php
│ ├── get_html_translation_table.php
│ ├── htmlentities.php
│ ├── htmlspecialchars.php
│ ├── implode.php
│ ├── nl2br.php
│ ├── parse_str.php
│ ├── pear-validate_us.php
│ ├── preg_grep.php
│ ├── preg_match.php
│ ├── preg_match_all.php
│ ├── preg_quote.php
│ ├── preg_replace-2.php
│ ├── preg_replace.php
│ ├── preg_replace_callback.php
│ ├── preg_split.php
│ ├── split.php
│ ├── sql_regcase.php
│ ├── str_pad-2.php
│ ├── str_pad.php
│ ├── str_replace.php
│ ├── str_word_count-2.php
│ ├── str_word_count.php
│ ├── strcasecmp.php
│ ├── strcmp.php
│ ├── strcspn.php
│ ├── strip_tags-2.php
│ ├── strip_tags.php
│ ├── strlen.php
│ ├── strpos.php
│ ├── strrpos.php
│ ├── strspn.php
│ ├── strstr.php
│ ├── strtok.php
│ ├── strtolower.php
│ ├── strtoupper.php
│ ├── strtr.php
│ ├── substr-2.php
│ ├── substr-3.php
│ ├── substr.php
│ ├── substr_count.php
│ ├── substr_replace.php
│ ├── ucfirst.php
│ └── ucwords.php
├── ch10 - Working with the File and Operating System
│ ├── basename.php
│ ├── dirname.php
│ ├── disk_free_space.php
│ ├── disk_total_space.php
│ ├── feof.php
│ ├── fgetcsv.php
│ ├── fgets.php
│ ├── fgetss.php
│ ├── file.php
│ ├── file_get_contents.php
│ ├── fileatime.php
│ ├── filectime.php
│ ├── filegroup.php
│ ├── filemtime.php
│ ├── fileowner.php
│ ├── fileperms.php
│ ├── filesize.php
│ ├── fread.php
│ ├── fscanf.php
│ ├── fwrite.php
│ ├── listing10-1.php
│ ├── listing10-2.php
│ ├── pathinfo.php
│ ├── readdir.php
│ ├── readfile.php
│ ├── realpath.php
│ ├── scandir.php
│ ├── socsecurity.txt
│ ├── symlink.php
│ └── users.txt
├── ch11 - PEAR
│ └── pear-numbers_roman.php
├── ch12 - Date and Time
│ ├── adddays.php
│ ├── addmonths.php
│ ├── addweeks.php
│ ├── addyears.php
│ ├── calculate-number-days-from-date.php
│ ├── checkdate.php
│ ├── getarray.php
│ ├── getdayofyear.php
│ ├── getisoweekofyear.php
│ ├── getlastmod.php
│ ├── gettimeofday.php
│ ├── getweekday.php
│ ├── getweekofyear.php
│ ├── isleap.php
│ ├── mktime.php
│ ├── number-days-any-month.php
│ ├── number-days-current-month.php
│ ├── setFirstDow.php
│ ├── setLastDow.php
│ ├── setToLastMonthDay.php
│ ├── strftime.php
│ ├── subdays.php
│ ├── submonths.php
│ ├── subweeks.php
│ └── subyears.php
├── ch13 - Forms
│ ├── create_dropdown.php
│ ├── javascript.html
│ ├── listing13-1.php
│ ├── logins.sql
│ ├── multivalue-forms.php
│ ├── simpleexample.php
│ └── subscribe.php
├── ch14 - Authenticating Your Users
│ ├── authenticationFile.txt
│ ├── listing14-1.php
│ ├── listing14-10.php
│ ├── listing14-11.php
│ ├── listing14-2.php
│ ├── listing14-4.php
│ ├── listing14-6.php
│ ├── listing14-7.php
│ ├── listing14-8.php
│ └── listing14-9.php
├── ch15 - Handling File Uploads
│ ├── listing15-1.php
│ ├── listing15-2.php
│ ├── listing15-3.php
│ ├── uploadmanager.html
│ └── uploadmanager.php
├── ch16 - Networking
│ ├── checkdnsrr-2.php
│ ├── checkdnsrr.php
│ ├── dnsgetrecord-2.php
│ ├── dnsgetrecord.php
│ ├── fsockopen.php
│ ├── getmxrr.php
│ ├── getservbyname.php
│ ├── getservbyport.php
│ ├── listing16-1.php
│ ├── listing16-2.php
│ ├── listing16-3.php
│ ├── listing16-4.php
│ ├── pear-htmlMimeMail-attachment.php
│ ├── pingserver.php
│ ├── portscanner.php
│ ├── send-email-multiple-recipients-2.php
│ ├── send-email-with-headers.php
│ ├── send-html-email.php
│ ├── send-mail-multiple-recipients.php
│ ├── send-plaintext-email.php
│ └── userbandwidth.php
├── ch17 - PHP and LDAP
│ ├── ldap_add.php
│ ├── ldap_bind.php
│ ├── ldap_compare.php
│ ├── ldap_connect.php
│ ├── ldap_count_entries.php
│ ├── ldap_dn2ufn.php
│ ├── ldap_explode_dn.php
│ ├── ldap_first_attribute.php
│ ├── ldap_first_entry.php
│ ├── ldap_free_result.php
│ ├── ldap_get_attributes.php
│ ├── ldap_get_dn.php
│ ├── ldap_get_entries.php
│ ├── ldap_get_values.php
│ ├── ldap_next_attribute.php
│ ├── ldap_next_entry.php
│ ├── ldap_read.php
│ ├── ldap_sort.php
│ ├── ldap_start_tls.php
│ └── ldap_unbind.php
├── ch18 - Session Handlers
│ ├── create_session_variable.php
│ ├── delete_session_variable.php
│ ├── listing18-1.php
│ ├── listing18-1.sql
│ ├── listing18-2.php
│ ├── listing18-3.html
│ ├── recent_view_documents.php
│ ├── session_decode.php
│ ├── session_id.php
│ └── sessioninfo.sql
├── ch19 - Templating with Smarty
│ ├── listing19-1.tpl
│ ├── listing19-2.php
│ ├── listing19-3.php
│ ├── listing19-4.php
│ ├── modify-smarty-dirs.php
│ └── multiple-caches-per-template.php
├── ch20 - Web Services
│ ├── blog.xml
│ └── listing20-2.php
├── ch21 - Secure PHP Programming
│ ├── mcrypt_encrypt.php
│ ├── md5.php
│ └── mhash.php
├── ch22 - AJAX
│ ├── listing22-1.php
│ ├── listing22-2.php
│ └── listing22-3.php
├── ch23 - Building Web Sites for the World
│ ├── listing23_1.php
│ ├── setlocale.php
│ └── strftime.php
├── ch24 - MVC and the Zend Framework
│ ├── ContactsController.php
│ └── contacts.sql
├── ch25 - Introducing MySQL
│ └── README.txt
├── ch26 - Installing and Configuring MySQL
│ └── README.txt
├── ch27 - The Many MySQL Clients
│ └── README.txt
├── ch28 - MySQL Storage Engines and Datatypes
│ └── README.txt
├── ch29 - Securing MySQL
│ └── README.txt
├── ch30 - Using PHP with MySQL
│ ├── listing30_1.php
│ ├── listing30_2.php
│ ├── prepared_statement.php
│ ├── products.sql
│ ├── recuperate_memory.php
│ └── retrieving_data.php
├── ch31 - Introducing PDO
│ ├── bindcolumn.php
│ ├── bindparam.php
│ ├── columncount.php
│ ├── execute.php
│ ├── fetch.php
│ ├── fetchall.php
│ ├── fetchcolumn.php
│ ├── products.sql
│ └── query.php
├── ch32 - Stored Routines
│ ├── calculate_bonus.sp
│ ├── get_employees.sp
│ ├── iterate.sp
│ ├── listing32_1.php
│ ├── listing32_2.php
│ ├── retrieve_multiple_rows.php
│ ├── service_info.sp
│ └── while.php
├── ch33 - MySQL Triggers
│ ├── helpdesk.trigger
│ └── listing33_1.php
├── ch34 - MySQL Views
│ ├── employee_contact_info.view
│ ├── employee_contact_info_v2.view
│ ├── employees.sql
│ └── execute_view_in_php.php
├── ch35 - Practical Database Queries
│ ├── calculate_bonus.sql
│ ├── cursor.php
│ ├── listing35-1.php
│ ├── listing35-2.php
│ ├── member_to_vehicle.sql
│ ├── products.sql
│ ├── sales.sql
│ ├── subquery.php
│ └── vehicles.sql
├── ch36 - Indexes and Searching
│ ├── bookmarks.sql
│ ├── bookmarks_fulltext.sql
│ ├── bookmarks_v2.sql
│ ├── bookmarks_v3.sql
│ ├── bookmarks_v4.sql
│ ├── employees.sql
│ ├── employees_v2.sql
│ ├── employees_v3.sql
│ ├── listing36_3.php
│ ├── searchextended.php
│ └── simplesearch.php
├── ch37 - Transactions
│ ├── customers.sql
│ ├── listing37_1.php
│ ├── participants.sql
│ └── trunks.php
├── ch38 - Importing and Exporting Data
│ ├── load_table_data_with_php.php
│ └── sales1.sql
└── 好例子网_PHP与MySQL程序设计第四版Pdf与源码.rar
38 directories, 348 files
好例子网口号:伸出你的我的手 — 分享!
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论