Databases| SQL| MySQL| Questions? | Software Development
 

PHP SQL Query Insert

This example illustrates how to execute insert query in php application.

PHP SQL Query Insert

                         

This example illustrates how to execute insert query in php application.

To understand how to use sql insert queries in php, we have created insertquery.php page. First, connection from database is created using mysql_connect("hostName", "userName", "Password"), selected the database by mysql_select_db("databaseName", connectionObject). Now, queries can be executed using mysql_query() method to insert values into the database.

 

 

 

 

Table: users (before insertion)

Source Code of insertquery.php 

<?php
  $con = mysql_connect("localhost","root","root");
  if (!$con) {
    die('Could not connect: ' . mysql_error());
  }

  mysql_select_db("test", $con);

  mysql_query("INSERT INTO users (username, password, email) VALUES ('Gaurvi', 
                    'gaurvi', 'gaurvi@email.com')");

  mysql_query("INSERT INTO users (username, password, email) VALUES ('Hardeep', 
                    'hardeep', 'hardeep@email.com')");

  $result = mysql_query("SELECT * FROM users ORDER BY username desc");
  echo "<table border='1'>
    <tr>
      <th>Name</th>
      <th>password</th>
      <th>Email</th>
    </tr>";
    while ($row = mysql_fetch_array($result)) {
      echo "<tr>";
      echo "<td>" . $row['username'] . "</td>";
      echo "<td>" . $row['password'] . "</td>";
      echo "<td>" . $row['email'] . "</td>";
      echo "</tr>";
    }
  echo "</table>";

  mysql_close($con);
?>

Download Source Code

Output:

                         

» View all related tutorials
Related Tags: sql mysql c database string git data type char port locale byte set support length symbols character tab local define

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
 
Tell A Friend
Your Friend Name

 
Recently Viewed
Software Solutions
Search Tutorials

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map | Privacy Policy

India News

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.