Hi.
I have a routine creating a pdf file. Here is the script that works
on the win98 dev box. But when I upload it to the linux online, it
does not work.
It stops at 'create handle'. Can someone please tell me why?
// GET COMPANY INFO
while($row = mysql_fetch_array($mysql_result)){
$name1 = $row['name1'];
$name2 = $row['name2'];
$addr1 = $row['addr1'];
$addr2 = $row['addr2'];
$city = $row['city'];
$stat = $row['stat'];
$zipc = $row['zipc'];
$phone = $row['phone'];}
// START PDF FILE
unlink('f:/localhost/adobe/' . $cocode . '_info.pdf');
// create handle for new PDF document
pdf_delete($pdf);
$pdf = pdf_new();
// open a file
pdf_open_file($pdf, 'f:/localhost/adobe/' . $cocode . '_info.pdf');
I do change the 'f:/localhost' to https://xx.xx.xx,xx when uploaded.
Any thoughts will be greatly appreciated... TIA
Floyd
--
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php