I'm getting this error message after changing the $hostname given to me from Godaddy.
It lists line 68 as the error: this is the code section $result = $dbh->query($sql);
Any help would be appreciated.
<?php
try
{
$type = $_GET['type'];
//-query the database table
if($_GET['type'] == 'ak')
{
//*$sql = "SELECT * FROM jewelry WHERE class = '$type' ";**/
$sql = "SELECT id, cid, group, image_th, image, picture, comment FROM images WHERE group = 'dionne' ORDER BY cid ASC";
}
else if($_GET['type'] == 'dionne')
{
$sql = "SELECT * FROM images WHERE picture = '2'";
}
$result = $dbh->query($sql);