Code Comments

Programming Forum and web based access to our favorite programming groups.
For Programmers: Free Programming Magazines | New: Database administration forum
Registration is free! Edit your profileCalendarFind other membersFrequently Asked QuestionsSearch -> 
Post New Thread











Thread
Author

help to solve php and oracle command
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:

Sponsored Links




Search this forum -> 
Post New Thread

Forum Jump:
All times are GMT. The time now is 04:45 PM.

 

Programming forum archive

Copyrights CodeComments.com 2004 - 2006

Powered by vBulletin Copyright 2000-2006 Jelsoft Enterprises Limited.