For Programmers: Free Programming Magazines  


Home > Archive > PHP SQL > August 2004 > help to solve php and oracle command









You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

 

Author help to solve php and oracle command
kanpp

2004-08-18, 3:57 pm

Problem

Currently i am creating a system using php that integreate with oracle
database.I am
having a problem to display the result that retrieve the data from
database When the
user try to search the details of the particular staff.
Below is the coding to retrieve and display the result.

Note: Connecting to the database using OCI8 is successfull.


###################### Retrieve data from database ##################

<?php
if(!empty(do)) {

if(do == "staff_id") {
search = "SELECT LIABILITIES.LIAB_ID FROM
LIABILITIES,EMPLOYEE
WHERE EMPLOYEE.STAFF_ID = LIABILITIES.STAFF_ID AND
EMPLOYEE.STAFF_ID='staff_id'";

}


if(do == "staff_name"){
//search ="SELECT reservation.Resv_Id,
reservation.No_PerChild, reservation.Resv_Arri,
reservation.Resv_Dept, room.Ro_Type FROM reservation, room WHERE
reservation.Ro_Id=room.Ro_Id and reservation.Resv_Id
='Resv_Id';";
}



search_result = OCIParse(conn,search);

search_res = OCIExecute(search_result);


?>


#########################Display the result inside the
table!##############################3


<?php
while(OCIFetchInto(search_result,value
s)) {
Liab_Id=values[0];

?>
<tr>
<td class="td3" ><font
class="text"><?php echo Liab_Id;
?></font></td>
<td class="td3" ><font
class="text"></font></td>
<td class="td3" ><font
class="text"></font></font></td>
<td class="td3"><font
class="text"></font></td>
<td class="td3"><font
class="text"></font></td>
<td class="td3"><font
class="text"></font></td>
<td class="td3"><font
class="text"></font></td>
<td class="td3"><font
class="text"></font></td>
<td class="td3"><font
class="text"></font></td>
</tr>
<tr>
<td colspan="7" class="td3" ><font
class="inlabelcell"><center></center></font><font
class="inlabelcell"> </font></td>

<td class="td3"><Center><div
class="labelcell">Total
Amount:</div></Center> </td>
<td class="td3"><font
class="inlabelcell"><center>
</center></font></td>
</tr>
<?php
}//close for while search_date
}//close if statement
?>

</center>
</body>
</html>


########################################
#############################
Bellow is the error messages that display when run this code!

Warning: ociexecute(): supplied argument is not a valid OCI8-Statement
resource in c:program filesapache
groupapachehtdocssearc_only_view.php on line 71

Warning:
ocifetchinto(): supplied argument is not a valid
OCI8-Statement resource
in c:program filesapache
groupapachehtdocssearc_only_view.php on line
109

Notes: For the full coding
--->http://www.geocities.com/whiteshiroi/search_view.txt,
If u cannot
view, please right click and click view source.







----------------------------------------
The post originated from PHP
Freaks:
----------------------------------------
http://www.phpfreaks.com
http://www.phpfreaks.com/forums


Sponsored Links







Also available: Server administration forum archive | Web Design forum archive | Software forum archive | Hardware reviews archive

Copyright 2008 codecomments.com