Search found 6 matches

by ybi
Thu Sep 25, 2003 6:16 am
Forum: PHP - Code
Topic: usage of function dl() - loading extension at runtime
Replies: 4
Views: 912

hi Leviathan,

maybe it's worth a try - thanks for your suggestion!

many greetings
ybi
by ybi
Wed Sep 24, 2003 4:58 am
Forum: PHP - Code
Topic: usage of function dl() - loading extension at runtime
Replies: 4
Views: 912

hi twigletmac, my provider has enabled the usage of dl(). And I' ve read the manual about the usage of dl() before I posted here, but I still wonder if there might be a way of using pdflib because it is very important for my project. Or do you have any idea how to provide printable invoices to the c...
by ybi
Tue Sep 23, 2003 6:21 am
Forum: Databases
Topic: Copying data from one table to another in the same database
Replies: 12
Views: 1961

hi robster,

just do

Code: Select all

<?php
$query="insert into table1 select * from table2";
mysql_query($query);
?>
table1 is the table you want to insert the complete content of table2.

I hope that'll help you :D

many greetings
ybi
?>
by ybi
Tue Sep 23, 2003 5:53 am
Forum: PHP - Code
Topic: usage of function dl() - loading extension at runtime
Replies: 4
Views: 912

usage of function dl() - loading extension at runtime

hi everyone,

I like to use pdflib to create pdf documents dynamically. But my provider has not enabled pdf. Can I just put the lib somewhere in my web directory and load it with

Code: Select all

<?php
dl('somewhere_in_my_web_directory/php_pdf.dll');
?>
during runtime?

thanks for your help
ybi
by ybi
Thu Sep 11, 2003 11:57 am
Forum: PHP - Code
Topic: pdflib - problem with opening gifs
Replies: 1
Views: 331

Still without knowing why this "gif error" occurs, I just converted all my gifs to jpeg (more then 2000!!!) and now it works first I used: <?php // $pdf_resource is a reference to a pdf document I've created // gif is the file type to open // $filename is the path and the filename of the i...
by ybi
Thu Sep 11, 2003 9:28 am
Forum: PHP - Code
Topic: pdflib - problem with opening gifs
Replies: 1
Views: 331

pdflib - problem with opening gifs

hi everyone, im using PDFLib Version 4.0.2. If I try opening gif files by using the pdflib function 'pdf_open_image_file' some gifs can't be opened although the path of all gifs is the same. I guess, that something is wrong with these gifs but can't find out!!! Please help me out - im frustrated aft...