|
Hi, if no result found in search, how can i print message saying that 'no result found'
here is example:
$query = "...";
$statementHandle = $databaseHandle->prepare( $query );
$statementHandle->execute();
while ( @row = $statementHandle->fetchrow_array() )
{
print "$row[0]";
} |