Using PHP to dynamically generate XML files and extract data from XML files into HTML applets... Don't use DOM ..
Source: Internet
Author: User
This stuff took me a day... However, at the end, I found that I could not achieve the effect I imagined... It's a pity... It seems that PHP still needs to strengthen XML... If anyone has research on this. Thank you for writing to us...
Create a table first:
Create table books (
Bookid int (4) not null auto_increment,
Bookname varchar (100) not null,
Bookauth varchar (50) not null,
Bookpublisher varchar (50) not null,
Bookpubdate datetime not null,
Bookurl varchar (50) not null,
KEY bookid (bookid ),
);
Then... This section is the source code for converting data from MYSQL to XML:
<?
$ Connect_id = mysql_connect ("localhost", "root ","");
Mysql_select_db ("bbs", $ connect_id );
$ Query = "select * from books order by bookid ";
$ Rs = mysql_query ($ query, $ connect_id );
$ Numfields = mysql_num_fields ($ rs );
$ Xmlfile = "<? Xml version = "1.0" encoding = "GB2312"?> ";
$ Xmlfile. = "<books> ";
While ($ row = mysql_fetch_array ($ rs )){
For ($ I = 0; $ I <$ numfields; $ I ++ ){
$ Fieldname = mysql_field_name ($ rs, $ I );
$ Xmlfile. = "<". $ fieldname. ">". $ row [$ I]. "</". $ fieldname. "> ";
}
}
Mysql_free_result ($ rs );
Mysql_close ($ connect_id );
$ Xmlfile. = "</books> ";
$ Fp = fopen ("xmldoc/xmldoc. xml", "w ");
If (fwrite ($ fp, $ xmlfile )){
Echo "file written! ";
}
Else {
Echo "failed to write file! ";
}
?>
This section is the source code for converting data from XML into HTML...
<?
Class xml {
Var $ parser;
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.