Hi there ,
My pc crashed and I reinstalled everything.
I have personal oracle 8.1.7 on my windows xp system for developing.
I also use php version 4.3.1.
The only difference before was that I used windows2000 and personal oracle
9.2.
When I use all my scripts before my pc-crash everything works except
that when I use my pages following error message appears :
php script interpreter :
php script interpreter has encoutered a problem and needs to cose.
We are sorry for the inconvenience.
send error report Don't send.
However when I click on Don't send my pages appear how it should be.
How can I solve/troubleshoot this problem.
Thxs
Gerry
PS :
an example of the page I use :
<?php
$conn = OCILogon("", "" , "**");
$stmt = OCIParse($conn,"select from table order by id");
OCIExecute($stmt);
print("<TABLE BORDER=1>\n");
print ("<TR ALIGN=LEFT VALIGN=TOP>");
$cols = OCINumCols($stmt);
for ( $i = 1; $i <= 1; $i++ ) {
$column_name = OCIColumnName($stmt,$i);
print ("<TH>" . $column_name . "</TH>\n");
}
for ( $i = 2; $i <= $cols; $i++ ) {
$column_name = OCIColumnName($stmt,$i);
print ("<TH>" . $column_name . "</TH>\n");
}
while ( OCIFetch($stmt) ) {
print ("<TR ALIGN=LEFT VALIGN=TOP><form name='' action='' Method='Post'>");
$ncols = OCINumCols($stmt);
for ( $i = 1; $i <= 1; $i++ ) {
$column_value = OCIResult($stmt,$i);
print ("<TD><input type=hidden name='***' value='". $column_value ."'>". $column_value ."</TD>\n");
}
for ( $i = 2; $i <= 3; $i++ ) {
$column_value = OCIResult($stmt,$i);
print ("<TD>" . $column_value . "</TD>\n");
}
for ( $i = 4; $i <= $ncols; $i++ ) {
$column_value = OCIResult($stmt,$i);
print ("<TD><a href='mailto:". $column_value . "'>" . $column_value . "</a></TD>\n");
}
}
print("</TABLE>\n");
OCIFreeStatement($stmt);
OCILogoff($conn);
As you can see nothing special....