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);
        ?>

Recommended Answers

All 2 Replies

Member Avatar for diafol

Post to the web development forum. This is community. You already have an open thread on this issue there.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.