To be or not to be.That is a question!

---源于莎士比亚的《哈姆雷特》

导航

2013年5月29日 #

php mysql增、删、改、查

摘要: <?php require_once "connect.php";echo <<<_END<!DOCTYPE HTML><html dir="ltr" lang="zh-CN"> <head> <meta charset="utf-8"> <title></title> </head> <body> <form action="sql_test.php" method=& 阅读全文

posted @ 2013-05-29 23:55 Ijavascript 阅读(263) 评论(0) 推荐(0) 编辑

mysql test

摘要: <?php /** * @sqltest.php */require_once "app_config.php";if (isset($_POST['delete']) && isset($_POST['isbn'])) { $isbn=get_post('isbn'); $query="delete from classics where isbn='$isbn'"; if (!mysql_query($query)) { echo mysql_error(); }} 阅读全文

posted @ 2013-05-29 18:12 Ijavascript 阅读(208) 评论(0) 推荐(0) 编辑