jesushax Posted July 18, 2008 Share Posted July 18, 2008 SO i have adobe livecycle and am looking at the xml source which i have no clue how it works im trying to get this php code into the xml in my pdf basically im trying to get some form fields in my pdf to be autofilled with data from the below php ive looked at tutorials and help etc not getting anywhere hopefully someone here will be able to help? Thankyou <?php include ($_SERVER['DOCUMENT_ROOT'] . '/includes/connection.php'); $ID = $_GET["ID"]; $SQL = mysql_query("SELECT * FROM tblVac WHERE VacID='$ID'"); $r = mysql_fetch_array($SQL) ?> <field1><? echo $r["VacRef"] ?></field1> <field2><? echo $r["VacTitle"] ?></field2> <field3><? echo $r["VacDetails"] ?></field3> Link to comment https://forums.phpfreaks.com/topic/115439-php-to-xml-in-pdf/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.