Unable to delete data from oracle database using php

Hey!! i am using php to delete data from database but its not deleting and no error is showing. Please help me.

<?php
  include('connect.php');
  $p_No = $_POST['p_No'];
  $sql2 = "DELETE FROM usersR WHERE p_No = '$p_No'";
  $compiled1 = oci_parse($conn,$sql2);
  $ex = oci_execute($compiled1,OCI_DEFAULT);
?>

you’re not even asking for errors. oci_error()

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.