Есть код,нужно что бы при вводе
site.ru/minecraft.php?text=test
Выводилась картинка с текстом который задан в url
<?php
$text = $_GET["text"];
$ses = $text;
?>
<!doctype html>
<html>
<meta charset='utf-8'>
<head>
<title>Minecraft</title>
<style>
@font-face {
font-family: minecraft;
src: url(minecraft.ttf);
}
</style>
</head>
<body>
<canvas id="example" width="320" height="64"></canvas>
<script>
var img = new Image();
img.src = 'achievement.png';
var canvas = document.getElementById("example");
var ctx = canvas.getContext("2d");
ctx.fillStyle = "#ffffff";
ctx.drawImage(img, 0, 0);
ctx.font = 'normal 18px minecraft';
ctx.fillText($ses, 60, 50);
</script>
</body>
</html>
<?php
echo $text;
?>
Не понимаю что здесь не так..