custom (Random)
{$artLink}
\n";
$numLinks++; // Increment the link counter
} else {
foreach ($artworks as $artId => $art) {
$artLink = "https://www.pixiv.net/artworks/{$artId}";
echo "Link: {$artLink}
\n";
$numLinks++; // Increment the link counter
}
}
// Display the number of links found within the div
echo "";
} else {
echo "No artworks found for the given user.";
}
}
// Usage example
$userId = isset($_GET['userId']) ? $_GET['userId'] : '75406576';
$random = isset($_GET['random']);
getPixivUserArt($userId, $random);
?>