php sqlite_num_fields example

WBOY
Release: 2016-07-25 08:57:42
Original
789 people have browsed it
  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. ?>
复制代码


Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!