Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
$hostLink = mysql_connect($host,$user,$pass) OR die('Unable to connect: '.mysql_error());
$hostLink = mysql_pconnect($host,$user,$pass) OR die('Unable to connect: '.mysql_error());
mysql_select_db($dbName, $hostLink) OR die('Unable to select database: '.mysql_error());
$result = mysql_query($SQL,$hostLink) OR die ('Query error: '.mysql_error());
while ($row = mysql_fetch_array($result)){
# your processing code
}
$num = mysql_num_rows($result);