Archive

Posts Tagged ‘query’

php连接mysql查询

September 4th, 2008 No comments

<?php
$con = mysql_connect(“localhost”,”peter”,”abc123″);
if (!$con)
  {
  die(‘Could not connect: ‘ . mysql_error());
  }

mysql_select_db(“my_db”, $con);

$result = mysql_query(“SELECT * FROM person”);

while($row = mysql_fetch_array($result))
  {
  echo $row['FirstName'] . ” ” . $row['LastName'];
  echo “<br />”;
  }

或者

 

<?php
mysql_connect
($host,$user,$password);
$result mysql_db_query(“database”,“select * from table”);
while(
$row mysql_fetch_array($result)) {
  echo 
$row["user_id"];
  echo 
$row["fullname"];
}
mysql_free_result($result);
?>

  • Share/Bookmark

paypal服务状态

August 19th, 2008 No comments

查看最新paypal服务状态

http://www.pdncommunity.com/blog?blog.id=mts_updates

  • Share/Bookmark
Categories: Zen-cart Tags: , , ,