PDF Generate From XML
Code For PDF
<?php
/* include the ACS class page */
require_once("../../classes/ACS.php");
/* Step 1: create object of the ACS class */
$ACS=new ACS();
/* Step 2: call the convert method for reading the csv Format and inserting data in database */
/* $xmlFileLocation = location of the xml file (i.e. complete path of the uploaded xml file) */
/* $outputFileLocation = location of the output file (i.e. complete path of the output file) */
$ACS->convert("xml","pdf",$xmlFileLocation,$outputFileLocation);
?>