Hello,
my web-server ist a P4 1.8 GHz 256 MB RAM.
maybe something to do with a loop in your code?
What do you mean? Where should I use a loop?
Here is a part of my code:
$DSN = "AS400PHP";
$Connection = odbc_connect($DSN,'name','password');
$KDLFN = $_GET['KDLFN'];
$DLR = 90;
$qryStandort = "SELECT SOSNR, SOSNA, SOLKZ, SOSTR, SOHNR, SOPLZ, SOORT FROM TKDFTEST.TKDSTO
WHERE SOFNR = '$DLR' AND SOSNR IN (SELECT GSSTO FROM TKDFTEST.TKDGST
WHERE GSFNR = '$DLR' AND GSGID IN (SELECT KDGID FROM TKDFTEST.TKDKDA WHERE KDLFN = '$KDLFN'))";
$ergStandort = odbc_do($Verbindung, $qryStandort);
$SOSNR = odbc_result($ergStandort, 1); // StandortNr
$SOSNA = ucwords(strtolower(odbc_result($ergStandort, 2))); // Standortname
$SOLKZ = odbc_result($ergStandort, 3); // Länder KZ.
$SOSTR = ucwords(strtolower(odbc_result($ergStandort, 4))); // Straße
$SOHNR = odbc_result($ergStandort, 5); // HausNr
$SOPLZ = odbc_result($ergStandort, 6); // PLZ
$SOORT = ucwords(strtolower(odbc_result($ergStandort, 7))); // Ort
odbc_close($Connection);
Thanks
Otto