<?php
$dbhostname = "jp22.net_las";//Domain and user name. Tried just localhost here
$dbname = "las_art";// name of database
$dbusername = "las";
$dbpassword = "*******";
if(!$dbConn = mysql_connect($dbhostname,$dbname,$dbusername,$dbpassword ))
die('I could not connect to the database. Clease check the inc_dbcon file and make sure everything is correct.');
if(!mysql_select_db($dbname, $dbConn))
die('I could not select the database. Check the inc_dbcon file and make sure everything is correct.');
?>