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