PHP Export method to generate word

Source: Internet
Author: User
The example in this article describes how PHP exports generate word. Share to everyone for your reference, as follows:

PHP Export Word

(1) First, preview the HTML page, instantiate the object, define the data to be exported
(2) Click on the download page, give the ID value (any value can be used only to determine), if the ID has a value, output buffer file, saved in Word format.
(3) After clicking on the download, (if it is a picture, use absolute path when saving as word, so that it can be displayed normally in saved word)
(4) Turn off cache output

word_con.php previewing the HTML file to export

<?phpif (@$_get[id]!= ") {include (' word_fun.php '); $word =new Word ();//Sample Object $word->start ();//define the beginning of the data to be saved} Include (' word_show.php '); if (@$_get[id]!= ') {   $word->save (' Word_c.doc ');//define the end of the data to be saved and save the data to Word} if (@$_get[id]== ") {// The x in the hyperlink is just to pass a value, confirm the download, no other actual Yi?> <a href= "#" ><p onclick= "window.location.href= ' word_con.php?id=x '" > Click to skip to download page </p></a> <?php}else{echo "<a href=\" word_c.doc\ "> Download </a>";}? >

word_fun.php exporting Word related functions

<?phpclass word{function Start ()//define the beginning of the data to be saved {    ob_start ();//Start output buffer    //set to generate Word format    print ' 

word_show.php connection database, query related data

<?php  include (' conn.php ');//Connect Database $sq = "Select Zf_content from ZF where ' zf_id ' =137"; $sql =mysql_query ($SQ); while (($que =mysql_fetch_array ($sql))!=false) {  echo "<font color=\" red\ ">hahaahahha</font>";  echo $que [' zf_content ']; }?>

I hope this article is helpful to you in PHP programming.

Related articles:

PHP uses Phpword to generate Word documents

Generate a Word document in a PHP program and provide the downloaded instance code

Three ways to implement a Word document generated by PHP

  • Contact Us

    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.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.