try
{
$query = "SELECT Blah..blah..blah'";
return pdo_select($query);
{
catch (PDOException $e)
{
return writeError($e);
}Before you realize it is supposed to be this?
try
{
$query = "SELECT Blah..blah..blah'";
return pdo_select($query);
}
catch (PDOException $e)
{
return writeError($e);
}
Help



Back to top















