Hallo,
folgende Fehlermeldung zeigt sich mir:
Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\buch\index.php:1) in C:\xampp\htdocs\buch\index.php on line 6
Das Script an sich ist total simpel und soll das verlinken von Amazonbüchern vereinfachen:
~~~php
<?php
$sub = $_GET['sub'];
$buch= "http://www.amazon.de/gp/product/".$sub."?ie=UTF8&tag=test-21&linkCode=as2&camp=1638&creative=6742&creativeASIN=".$sub;
// Weiterleitung
// header("HTTP/1.1 301 Moved Permanently");
header("Location: $buch");
// header("Connection: close");
?>
Dnake für eure hilfe
Nichtskönner.