• hello,
    i want to add a form in my page with document uploade .but i’m new in php
    and i don’t no how i do this…

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter sanjayb18

    (@sanjayb18)

    and how to save in data base..

    Thread Starter sanjayb18

    (@sanjayb18)

    i’m trying this but still it’s not working it’s give some error like INSERT.PHP not found inside wordpress

    [ Moderator Note: Please post code or markup snippets between backticks or use the code button. ]

    <form action="insert.php" method="post">
    Firstname: <input type="text" name="fname" />
    
    Lastname: <input type="text" name="lname" />
    
    <input type="submit" />
    </form>
    *******************************
    INSERT.PHP
    <html>
    <body>
    
    <?php
    $con = mysql_connect("mysql.cis.ksu.edu","cis_id","password");
    if (!$con)
      {
      die('Could not connect: ' . mysql_error());
      }
    
    mysql_select_db("cis_id", $con);
    
    $sql="INSERT INTO nametable (fname, lname)
    VALUES
    ('$_POST[fname]','$_POST[lname]')";
    
    if (!mysql_query($sql,$con))
      {
      die('Error: ' . mysql_error());
      }
    echo "1 record added";
    
    mysql_close($con)
    ?>
    </body>
    </html>
Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘database’ is closed to new replies.