Home  >  Article  >  Backend Development  >  php sqlite_num_fields example

php sqlite_num_fields example

WBOY
WBOYOriginal
2016-07-25 08:57:42739browse
  1. /**
  2. * Example of sqlite_num_fields function
  3. * edit: bbs.it-home.org
  4. *
  5. */
  6. $sqldb = sqlite_open("mydatabase.db");
  7. $results = sqlite_query($sqldb, "SELECT * FROM employee");
  8. echo "Total fields returned: ".sqlite_num_fields($results)."
    ";
  9. sqlite_close($sqldb);
  10. ?>
复制代码


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
Previous article:Tips on using PHP arraysNext article:Tips on using PHP arrays