How to read a table in SQL using ASP.
Set objGetForm = cnnConn.Execute("SELECT * FROM crs_applicants")
SHARETHIS.addEntry({ title: "Select statement with sql using asp", url: "http://code.netexceed.com/asp/select-statement-with-sql-using-asp/" });
Select statement with s...
Read from database with...
How to read a sql query from mysql using php.
<?php
include 'dbloc.php';
$query = "SELECT name, phone FROM address";
$result = mysql_query($query);
while($row = mysql_fetch_array($result, MYSQL_ASSOC))
{
echo "Name: {$row['name']} <br>” .
“Phone: {$row['phone']}...


