ID: 8902
Updated by: derick
Reported By: [EMAIL PROTECTED]
Old-Status: Open
Status: Bogus
Bug Type: *PDF functions
Assigned To:
Comments:
submitted twice
Previous Comments:
---------------------------------------------------------------------------
[2001-01-25 07:28:01] [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=8902
--
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]