hi, im using PHP with oracle and have having a little trouble with the following section of code.

<?php

// set server access variables kjl
require('includes/connect.inc'); //Connection details
// if id provided, then delete that record
if (isset($
GET['COTTAGE_NAME'])) {
// create query to delete record
$query = "DELETE FROM COTTAGE WHERE COTTAGE_NAME = ".$_GET['COTTAGE_NAME'];
//Parsing with some error reporting
$stmt = parse_execute($connection,$query);

When running this im getting the following error

Fatal error: Call to undefined function parse_execute() in /study/comp/c3035544/webpages/Bronte/_admin/mark.php on line 18

any help with this is very much appreciated.

    Probably because there is no such function native to PHP called parse_execute().

      Write a Reply...