PHP基本教學

有範例 還瞞好看懂的喔˙ˇ˙

點我連結

簡易留言版:

index.php

 <?php  //一、連結資料庫

  //建立連線:

  @$link = mysql_pconnect("localhost", "ID", "possword");

  //選擇資料庫:

  @mysql_select_db("資料庫") or die("無法選擇資料庫");

 

  //二、執行SQL語法

  // 建立SQL語法

  @$query = "SELECT * FROM 資料表";

 

  //送出SQL語法到資料庫系統

  @$result = mysql_query($query) or die("無法送出" . mysql_error( ));

 

  // 三、取得執行SQL語法後的結果 (指查詢部份)

  while ( $row = mysql_fetch_array($result) ) {

    echo

"<table border='1' cellpadding='0' cellspacing='0' style='border-collapse: collapse' bordercolor='#111111' width='50%' id='AutoNumber1'>

   <tr>

    <td width='50%'>" .$row['資料欄1']. "</td>

    <td width='50%'>" .$row['資料欄2']. "</td>

  </tr>

</table>";

  }

 

  //四、釋放與Mysql的連線

  @mysql_free_result($result);

?>

<form name="form1" method="post" action="index1.php">

<p>姓名: <input name="資料欄1" type="text" id="資料欄1" size="20"></p>

<p>留言: <input name="資料欄2" type="text" id="資料欄2" size="20"></p>

<p> <input type="submit" name="Submit" value="送出"> <input type="reset" name="Submit2" value="重設"></p>

</form>

 

index1.php

 <?php

  //建立連線:

  @$link = mysql_pconnect("localhost", "ID", "possword");

  //選擇資料庫:

  @mysql_select_db("資料庫") or die("無法選擇資料庫");

 

  //二、執行SQL語法

  // 建立SQL語法

  @$query = "INSERT INTO `資料表` VALUES ('$資料欄1','$資料欄2');";

 

  //送出SQL語法到資料庫系統

  @$result = mysql_query($query) or die("無法送出" . mysql_error( ));

  

  //四、釋放與Mysql的連線

  @mysql_free_result($result);

echo

"<form name='form1' method='post' action='index.php'>".

"預覽! <BR>"."姓名: $資料欄1 <BR>"."留言: $資料欄2 <BR>".

"<p> <input type='submit' name='Submit' value='回上頁'></p>

</form>";

?>