Jump to content

PHP to XML in PDF


jesushax

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.