Jump to content

undefined function help


Recommended Posts

hi, im pretty new to using PHP with oracle, im running the following script

 

 

 

<?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.

 

 

Link to comment
https://forums.phpfreaks.com/topic/52143-undefined-function-help/
Share on other sites

  • 1 month later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.