I have a PHP script that basically tries to convert the string it gets from:
https://camwijs.nl/system/avatarimage.aspx?username=
to
https://www.habbo.com/habbo-imaging/avatarimage?figure=
If I run the code it just gives me an page with the error message:
Warning: file_get_contents(https//camwijs.nl/system/avatarimage.aspx?username=nomakta): failed to open stream: No such file or directory in /home/u750368594/public_html/v1/avatar/avatar.php on line 4 http://www.habbo.com/habbo-imaging/avatarimage?figure=
Here is the code:
<?php
// gets avatar with GR
$camwijsAvatarurl = "https//camwijs.nl/system/avatarimage.aspx?username=".htmlspecialchars($_GET["name"]);
// displays avatar link here
echo 'http://www.habbo.com/habbo-imaging/avatarimage?fgure=' .file_get_contents($camwijsAvatarurl);
?>