This example illustrates how to use the 'if' statement when accessing the data from mysql database table in php.
This example illustrates how to use the 'if' statement when accessing the data from mysql database table in php.This example illustrates how to use the 'if' statement when accessing the data from mysql database table in php.
In this example we create a connection from database table using mysql_connect("hostName", "userName", "Password"). After the connection created we choose database by mysql_select_db("databaseName", connectionObject) and finally we execute query by mysql_query("SELECT * FROM tableName"). The founded result display in the table as row and column wise. Here we are using the if statement, so only one data will display here as shown in the output.
Source Code of IF_Statement.php
<?php
|
Output: