php自学

<?php
$dbh 
=  mysql_connect('localhost:3306','mcclain','standard');
mysql_select_db('admreqs');
$query "insert into requests(date, request, email, priority,status) values (NOW(),'$description', '$email', '$priority', 'NEW')";
$res mysql_query($query$dbh);
$query "select max(id) from requests";
$res mysql_query($query$dbh);
$err mysql_error();
if(
$err){
  echo 
"发生错误,请通知<a href=mailto:[email protected]>站长</a>";
}
  
$row mysql_fetch_row($res);
  echo 
"未来您使用的号码为: ".$row[0];
?>

你可能感兴趣的:(PHP)