ages ago i had a winamp sig n it worked fine using the exact code as shown below
but its given errorsPHP Code:<?php
// ----------------------------------------
//
Winamp Update By Niels van Renselaar
// Speciaal voor webscripters.nl
// ----------------------------------------
function inkort($txt, $length) { if(strlen($txt) > $length) { $txt = substr($txt, 0, $length)."..."; ** return $txt; **
$content = $_GET[song];
if($content) {
$liedje = stripslashes(inkort($content, 30));
header("Content-type: image/JPEG");
$plaatje = ImageCreateFromJPEG(\"http://sutsurikeru.net/winampsig/sig.jpeg\");
$white = Imagecolorallocate($plaatje, 000, 000, 000);
$zwart = ImageColorAllocate($plaatje, 000, 000, 000);
imagestring($plaatje, 3, 70, 6, $liedje, $zwart);
ImageJPEG($plaatje, "winamp.jpeg", 100);
ImageDestroy($plaatje);
**
?>
Parse error: parse error, unexpected T_STRING in line 4
i looked up t string error but im clueless lol
anyhelp will be great ty
