Jump to content

delete query problem


azeem123456

Recommended Posts

hi i am making content management system and i m having issue in deletion of page

when i press delete then it gives me error

 

Page deletion failed.

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'LIMIT 1' at line 1

Return to Main Site ...kindly help me please

my code is

<?php require_once("includes/connection.php"); ?>
<?php require_once("includes/functions.php"); ?>

<?php
    // make sure the subject id sent is an integer
    if (intval($_GET['page']) == 0) {
        redirect_to('content.php');
    }
    
    $id = mysql_prep($_GET['page']);
    
    // the page's subject_id for the redirect
    if ($page = get_page_by_id($id)) {
        
        $query = "DELETE FROM pages WHERE id = {$page['id']} LIMIT 1";
        $result = mysql_query ($query);
        if (mysql_affected_rows() == 1) {
            // Successfully deleted
            redirect_to("edit_subject.php?subj={$page['subject_id']}");
        } else {
            // Deletion failed
            echo "<p>Page deletion failed.</p>";
            echo "<p>" . mysql_error() . "</p>";
            echo "<a href=\"content.php\">Return to Main Site</a>";
        }
    } else {
        // page didn't exist, deletion was not attempted
        redirect_to('content.php');
    }
?>
<?php

mysql_close($db);
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.