Jump to content

PHP Code Help


Codey

Recommended Posts

Hello

 

I am new to PHP and am working on an exercise but is not working, the problem is that is not inserting the data in to mysql database.

 

When enter the user and password in the html page runs and give no problems, get no errors.

 

In MySQL one table created with: ID, NOMBRE, PW

 

 

Linux OS OpenSuse 13.1 / localhost

Apache 2.4.6

Database Server version 5.5.33-MariaDB

Database client version mysqlnd 5.0.10

PHPMyAdmin 4.1.14

 

Attached is a screenshot of the PHPMyAdmin table.

 

 

 

This is my index dot php

<!DOCTYPE>
 <html> 
  <head> 
  <title> Insertar Nombre Password </title> 
  </head> 
  <body>


<form action="insertar.php" method="post" name="form">


           <input type="text" name="nombre" /><br /><br />
           <input type="password" name="pw" /><br /><br />
           <input type="submit" value="insertar datos" />


</form>
</body> 
</html> 

insertar dot php

<?php


 //Include another script in this one.


 include("conexion.php");


 if(isset($_POST['nombre']) && !empty($_POST['nombre']) &&
 isset($_POST['pw']) && !empty($_POST['pw'])) 
 {


//Connect to the database


$con = mysql_connect($host,$user,$pw)or die("problemas al conectar");


mysql_select_db($db,$con)or die("problemas al conectar la bd");


mysql_query("INSERT INTO CodigoF (NOMBRE,PW) VALUES ('$_POST[nombre]','$_POST[pw]')",$con);
echo "datos insertados";


 }


 else {
  echo "problemas al insertar datos";
  }


?>

conexion dot php

<?php


$host = "localhost";
$user = "root";
$pw = "Fafa1669";
$db = "CodigoFacilito";


?>

Hope some one can guide me in the right direction, thank you.

 

post-168779-0-99692300-1399590742_thumb.jpg

Link to comment
Share on other sites

Thank you for the reply, I have php error checking "on", but still code does not work, have checked the quotes you mentioned but same problem persist, no error message is shown everything ok except that data is not saved in the db.

Link to comment
Share on other sites

change

mysql_query("INSERT INTO CodigoF (NOMBRE,PW) VALUES ('$_POST[nombre]','$_POST[pw]')",$con);
echo "datos insertados";

 

to

 

if(is_numeric($_POST['nombre'])) {
   $nombre = mysql_real_escape_string($_POST['nombre');
} else {
   $err[] = "Must be a number";
}
 
if(is_numeric($_POST['pw'])) {
    $pw = mysql_real_escape_string($_POST['pw');
} else {
    $err[] = "Password must be a number";
}
 
if(empty($err)) {
    $ins = mysql_query("INSERT INTO CodigoF (NOMBRE,PW) VALUES ($nombre, $pw)") or die(mysql_error());
    if($ins) {
         echo "datos insertados";
    } else {
         echo "problemas al insertar datos";
    }
} else {
   foreach($err as $code) {
       echo $code."<br>";
   }
}

His input doesn't need the quotes in the query, they're integers in the database table.

Link to comment
Share on other sites

Note that is_numeric() will consider the follow as numbers:

  • 0x539
  • 1337e0
  • 9.1
To make sure the values only contain numbers, you can use ctype_digit().
 
 
Also, it's worth pointing out that richei added a call to mysql_error() to the following line:
$ins = mysql_query("INSERT INTO CodigoF (NOMBRE,PW) VALUES ($nombre, $pw)") or die(mysql_error());
 
This function should help determine if there's anything wrong with the query. More information about the function can be found here:
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.