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> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.