|
|
Source code |
1 2 3 |
Array ( ) |
This post has been edited 1 times, last edit by "Defender" (Mar 5th 2008, 7:14pm)
|
|
PHP Source code |
1 2 3 4 5 6 7 8 9 10 |
<?
// Grafik erstellen
header ("Content-type: image/png");
$im = ImageCreate (300, 25); // Bild erstellen
$color = ImageColorAllocate ($im, 255, 255, 255); // Weiß
$color = ImageColorAllocate ($im, 0, 0, 0);
ImageString ($im, 15, 5, 5, $team.": ".$rating, $color); // Testtext schreiben
ImagePNG ($im); // Bild "ausgeben"
Imagedestroy ($im); // Zeiger wieder freigeben
?>
|
|
|
Source code |
1 2 3 |
Options -MultiViews RewriteEngine on RewriteRule ^rating/([^/]+)/([^/]+)/([^/]+)\.jpg$ rating.php?team=$3&realm=$1&art [L,R] |
|
|
Source code |
1 2 3 |
Options -MultiViews RewriteEngine on RewriteRule ^armory/rating/([^/]+)/([^/]+)/([^/]+)\.jpg$ /armory/rating.php?team=$3&realm=$1&art=$2 [L] |
This post has been edited 1 times, last edit by "MasterCassim" (Mar 5th 2008, 9:52pm)
/Edit: Mit Hilfe von Defender hats jetzt endlich geklappt. Ich musste die ".htaccess" ins Root Verzeichnis legen und dann klappte es:
Forum Software: Burning Board® 3.1.3, developed by WoltLab® GmbH