<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> new document </title> <style type = "text/css"> #outer{position:absolute; left:500px; top:300px; } </style> </head> <body > <div id = "outer"><form action = "127.0.0.1/formSearch.php" method = "post"><label for = "searchItem">Search Books:</label><input type = "text" name = "searchItem" id = "searchItem" size = "50" maxlength = "500" /><input type = "submit" value = "Search" /></form></div> </body></html>
<html><body><head><title>search result</title></head><script language = "php">$item = trim($_POST['searchItem']) ;if (!isset($item)){ echo "<p>what you want to search..</p>"; //$item = "javascript";}if (!get_magic_quotes_gpc()){ $item = addslashes($item);}$db = new mysqli("localhost", "root", "cai123",'phpdb');if (mysqli_connect_errno()){ echo "<p>can not to connect to database</p>";}$query = "SELECT * FROM books WHERE bookname LIKE"."'%".$item."%'";$result = $db->query($query);if (!$result){ echo "<p>no record was found...</p>";}$items = $result->fetch_object();echo "<ul><li>ISBN: ".stripslashes($items->isbn)."</li>";echo "<li>bookname: ".stripslashes($items->bookname)."</li>";echo "<li>authors: ".stripslashes($items->authors)."</li>";echo "<li>prices: ".doubleval($items->prices)."</li></ul>";//$item->free();$db->close();</script></body></html>
パスジャンプに問題があります
ブラウザ入力: 127.0.0.1/formSearch.php
http プロトコルが使用されています (http://127.0.0.1/formSearch)。 php
ブラウザがフレンドリーで http://
と入力する手間が省けるだけです。そして file:///E:/CodeEdit/php/127.0.0.1/formSearch.php
はファイル システム プロトコル
明らかに、HTML コードは Web サーバーを介してアクセスされません
ので、次のように記述する必要があります
1a0231ded953d789e798d779aff2a511サーバーから実行する場合は、