Jump to content

Chatrapati

Members
  • Posts

    16
  • Joined

  • Last visited

Posts posted by Chatrapati

  1. <?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 ! !

  2. THIS IS MY CODE:

     

    BUT ONLY FILE NAME IS STORED IN DATABASE !

     

    NOT PATH

    // can any correct it?

     

    <?php

     

     

    $path="upload/".$_FILES['uname']['name'];

     

     

    if(copy($_FILES['uname']['tmp_name'], $path))

    {

     

    $id=$_POST['id'];

     

    $a=$_FILES['uname']['name'];

     

    $sql="INSERT INTO image(id,uname) VALUES ('$id','$a')";

     

    $result=mysql_query($sql);

    }

    else

    {

    echo "error";

    }

     

    $sql1="SELECT * FROM image";

    $result1=mysql_query($sql1);

     

    while($r=mysql_fetch_array($result1))

     

    {

    echo $r['id'];

    $pic=$r['uname'];

    echo "<img src=http://wapfull.site90.net/upload/.$pic>";

     

     

    }

     

    ?>

  3. PHP:

    how can i link the files stored in directory

     

    to the index.php

     

    eg: if a user upload's a file it should also be linked in index.php as

    'RECENT UPLOADS'

    i tried this

     

    $path="/uploadedfiles/.$HTTP_POST_FILES['file']['name'];

     

    <img src=\"$path\" >

     

    but it only show's the file when it is uploaded.

     

    can any help me?

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