Jump to content

code no adding


ecabrera

Recommended Posts

i dont get whats wrong i does not add to the db

 

<?php

if($_POST['submitbtn']){

require "scripts/connect.php";

$title = mysql_real_escape_string($_POST['title']);
$by = mysql_real_escape_string($_POST['by']);
$body = mysql_real_escape_string($_POST['body']);

if ($title && $by && $body){

$query = mysql_query("INSERT INTO news (title, by, body)VALUES('$title', '$by', '$body')");

echo "ADD SUCCESFULLY!";

}else
   $msg = "<font color=red>YOU DID NOT FILL ALL OF THEM IN!</font>";
}

?>

Link to comment
Share on other sites

What showing this code?

<?php

if($_POST['submitbtn']){

    require "scripts/connect.php"; // check content of this file

    $title = mysql_real_escape_string($_POST['title']);
    $by = mysql_real_escape_string($_POST['by']);
    $body = mysql_real_escape_string($_POST['body']);

    if ($title && $by && $body){

        mysql_query("INSERT INTO news (title, by, body)VALUES('$title', '$by', '$body')") or die(mysql_errno()); // if mysql_query() wrong, printing mysql_errno()

        echo "ADD SUCCESFULLY!";

    }else
        $msg = "<font color=red>YOU DID NOT FILL ALL OF THEM IN!</font>";
}


?>

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.