ID: 8901 Updated by: sniper Reported By: [EMAIL PROTECTED] Old-Status: Open Status: Bogus Bug Type: *PDF functions Assigned To: Comments: Please read the PDF documentation here: http://www.php.net/pdf Hint: The correct function is PDF_open().. If you have more questions and need support, please ask such questions on [EMAIL PROTECTED] mailing list. --Jani Previous Comments: --------------------------------------------------------------------------- [2001-01-25 07:27:41] [EMAIL PROTECTED] <?PHP dbname = "Richtlinien"; $link = mysql_connect ("127.0.0.1", "httpd", "") or die("Could not connect"); print ("Connected successfully<br>"); if ($link) { if(mysql_select_db($dbname, $link)) { echo "DB $dbname wurde ausgewählt !<br>"; $sql = "SELECT Pfad FROM Dokumente WHERE Bezeichnung ='Bibliotheken'"; $ergebnis = mysql_query($sql, $link); if ($ergebnis) { echo "Gefunden !<br>"; while($zeile = mysql_fetch_row($ergebnis)) { for ($i=0;$i< mysql_num_fields($ergebnis);$i++) { $pointer=fopen($zeile[$i],"w+"); $a=PDF_open_file(p,$zeile[$i]); echo "Verarbeitung abgeschlossen !!!"; } } mysql_free_result($ergebnis); } else { echo "Nichts gefunden !!"; } } } mysql_close ($link); ?> --------------------------------------------------------------------------- Full Bug description available at: http://bugs.php.net/?id=8901 -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]