Fatal error: Cannot redeclare htmtocode() (previously declared in D:www_localmytestconn.php:7) in D:www_localmytestconn.php on line 10
This error message appears when writing the paging file page.php
Google translated this sentence as "Fatal error: cannot redeclare htmltocode()"
The code on line 10 is
php
//Connect to the database
include("conn.php");
//Introduce paging class files
include("page.class.php" ; >Solution: Use include_once() instead of include
http://www.bkjia.com/PHPjc/323135.html
www.bkjia.com
true
http: //www.bkjia.com/PHPjc/323135.htmlTechArticleFatal error: Cannot redeclare htmtocode() (previously declared in D:www_localmytestconn.php:7) in D:www_localmytestconn .php on line 10 This error message appears when writing a paging file...