Home > php教程 > PHP源码 > 【PHP】直接在页面上查询数据库,执行SQL语句

【PHP】直接在页面上查询数据库,执行SQL语句

PHP中文网
Release: 2016-05-25 17:16:06
Original
1341 people have browsed it

php代码:

<?php
if (isset($_POST[&#39;submit&#39;])) {
      $rowID = $_POST[&#39;id&#39;];
      mysql_connect("mysql153.secureserver.net","java2s","password");
      mysql_select_db("java2s");
      
      $query = "SELECT * FROM Employee WHERE ID=&#39;$id&#39;";
      $result = mysql_query($query);
      list($name,$productid,$price,$description) = mysql_fetch_row($result);
}

?>
<form action="<?php echo $_SERVER[&#39;PHP_SELF&#39;]; ?>" method="post">
   <select name="id">
      <option name="">Choose a employee:</option>
      <option name="1">1</option>
      <option name="2">2</option>
      <option name="3">3</option>
   </select>
   <input type="submit" name="submit" value="Submit" />
</form>
Copy after login

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
Latest Articles by Author
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template