putenv("ORACLE_HOME=/opt/oracle");
putenv("ORACLE_SID=zc");
$conn=ocilogon("dy","dy");
$stmt=OCIParse($conn,$SQL);
OCIFreeStatement($stmt);
if (OCILogoff($conn)){
$ret2="99";
}else{
$ret2="00";
}
if (OCIError()){
$ret3="11";
}
else{
$ret3="22";
}
echo "aaa".$ret3."bbb".$ret2;
the result is: aaa22bb00
it meant that OCILogoff($conn) execute uncorrectly
i use redhat6.2 php4.0,oracle 8.1.6
it generate a new processor,it's parent
processor is httpd,
i can't kill it using kill -9
i have to kill httpd.
why?