PHP Simulation Database common operation effect, PHP simulation database
test.php
PHPHeader("content-type:text/html;charset= ' UTF8 '"); error_reporting (e_all); Echo "Simulation database common operation effect
"; Echo "Perform the Add action
"; Echo The Perform delete operation
"; Echo The Perform a Find operation
"; Echo The Perform update operation
";
check.php
php if ( isset ( $_get [' action ' ]) {
Switch ( $_get [' Action ' ]} { case "Add": echo "" ; break ; case "del": echo "" ; break ; case "search": echo "" ; break ; case "Update" ; echo "" ; break ; default : echo "" ; break ; } // echo ""; Echo "" ; }
http://www.bkjia.com/PHPjc/1051216.html www.bkjia.com true http://www.bkjia.com/PHPjc/1051216.html techarticle PHP Simulation Database Common operation effect, PHP simulation database test.php PHP header ("content-type:text/html;charset= ' UTF8 '"); error_reporting (E_all); echo "Analog database common operations ...