Jump to content

whats the error here?


Chatrapati

Recommended Posts

<?php

 

include "config.php";

 

$id=$_POST['id'];

$name=htmlspecialchars(addslashes($_POST['name']));

 

$sms=htmlspecialchars(addslashes($_POST['sms']));

 

$time=date("d-m-y");

 

if(isset($_POST['submitbutton']))

{

 

if(empty($name))

{

echo "Kindly enter your name<br/>";

}

if(empty($sms))

{

echo "May be you forgot to Add YOUR SMS <br/>";

}

 

$count=strlen($name);

 

 

if($count < 2)

{

echo "Your name must contain atleast Two characters<br/>";

}

if($count > 12)

{

echo "Your name Must contain less than Twelve characters<br/>";

}

 

$countsms=strlen($sms);

 

if($countsms < 20)

{

echo "Your Sms Must contain atleast Twenty characters<br/>";

}

 

if($countsms > 5000)

{

echo "Your Sms Must contain below Five Thousand Characters<br/>";

}

else

{

$sql="INSERT INTO form1(id,name,sms,time) VALUES('$id','$name','$sms','$time')";

 

$result=mysql_query($sql) or

die(mysql_error());

 

}

 

if ($result)

{

echo "SMS added successfully";

}

else

{

echo "could'nt add your SMS";

}

}

else

{

header("Location:form1.php");

 

}

?>

 

 

 

what's the error here,

 

if a user enter's incorrect details, it should not be inserted into the database,

 

it should show error,

 

but in this code, if statements are not working.

 

even if user enters incorrect details, it's inserted into database,

 

pls specify the error here,

 

and take a look at

 

http://wapfull.comoj.com/form2.php

 

yu'll know the Error's ! !

Link to comment
https://forums.phpfreaks.com/topic/281275-whats-the-error-here/
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.