custom
' . $artistname . '<\/a><\/b> \(\d+\)/';
// Perform the regular expression match on the HTML content
preg_match_all($pattern, $html, $matches);
// Check if any matches are found
if (!empty($matches[0])) {
$artistLines = $matches[0];
foreach ($artistLines as $line) {
echo $line . "
";
}
} else {
echo "No matching lines found for '{$artistname}'.";
}
?>