function search($data) {
global $handler;
$sql = "SELECT * FROM `songs` WHERE `song_title` LIKE :title ORDER BY song_id DESC LIMIT 10";
$stmt = $handler->prepare($sql);
$stmt->execute(array(':title' => '%'.$data.'%'));
if($stmt->rowCount()) {
while($s = $stmt->fetch()) {
echo "<b>{$s['song_title']}</b><br>";
}
} else {
echo "No results found...";
}
}