Home  >  Article  >  Backend Development  >  The select statement in select html reads the contents of the mysql table

The select statement in select html reads the contents of the mysql table

WBOY
WBOYOriginal
2016-07-29 08:34:51918browse

  $record=0;
  $db=@mysql_pconnect('localhost','root');
  @mysql_select_db('1234',$db);
  $strsql="select * from 1234_data";
  $result=@mysql_query($strsql);
  $data=@mysql_fetch_array($result);
  $record=@mysql_num_rows($result);
  echo "n";
?>

以上就介绍了select html中select语句读取mysql表中内容,包括了select方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Statement:
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