Can't insert and update at the same time

111 Views Asked by At

I have the code below and i can't figure why it's not working. The problem it's that i can insert a post with it, but when i try to update a post it's create a new page instead to update.

I have tried to remove isset from if(isset($_POST['id']) != 'null') and the update work, but then the insert doesn't work anymore.

Any idea what it's wrong with my code? Thanks.

    <?php 

        if(isset($_POST['submitted']) == 1) 
        {

            $title = mysqli_real_escape_string($dbc, $_POST['title']);
            $header = mysqli_real_escape_string($dbc, $_POST['header']);
            $body = mysqli_real_escape_string($dbc, $_POST['body']);

            if(isset($_POST['id']) != 'null')
            {
                $q = "UPDATE pages SET user = $_POST[user], title = '$title', header = '$header', body = '$body' WHERE id = $_GET[id]";
            }
            else
            {
                $q = "INSERT INTO pages (user, title, header, body) VALUES ($_POST[user], '$title', '$header', '$body')";
            }


            $r = mysqli_query($dbc, $q);

            if($r)
            {
                $message = '<p>Page was added!</p>';
            } 
            else 
            {

                $message = '<p>Page could not be added because:</p>'.mysqli_error($dbc);
                $message .= '<p>'.$q.'</p>';
            }

        }
    ?>
3

There are 3 best solutions below

0
On BEST ANSWER

You are using post and get at the same time. first check whethet it is post or get. then just simply do isset() check

<?php 

    if(isset($_POST['submitted']) == 1) 
    {

        $title = mysqli_real_escape_string($dbc, $_POST['title']);
        $header = mysqli_real_escape_string($dbc, $_POST['header']);
        $body = mysqli_real_escape_string($dbc, $_POST['body']);

        if(isset($_GET['id']) && $_GET['id']!="")

        {
            $q = "UPDATE pages SET user = $_POST[user], title = '$title', header = '$header', body = '$body' WHERE id = $_GET[id]";
        }

        else

        {
            $q = "INSERT INTO pages (user, title, header, body) VALUES ($_POST[user], '$title', '$header', '$body')";
        }


        $r = mysqli_query($dbc, $q);

        if($r)
        {
            $message = '<p>Page was added!</p>';
        } 

        else 
        {

            $message = '<p>Page could not be added because:</p>'.mysqli_error($dbc);
            $message .= '<p>'.$q.'</p>';
        }

    }
?>
2
On

Try this :

if(isset($_POST['id']) AND $_POST['id'] != 'null')
0
On
use this code:  if(isset($_POST['id'] && $_POST['id']!= '')