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
https://forums.phpfreaks.com/topic/253198-code-no-adding/
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
https://forums.phpfreaks.com/topic/253198-code-no-adding/#findComment-1298009
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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