Originalmente inviato da
biccheddu
Quel codice non supera nemmeno le 30 righe
Comunque ti consiglio vivamente di lasciare AppServ e quant'altro ed installare XAMPP
XAMPP per me è scarto!
Originalmente inviato da
dreadnaut
Ovviamente la riga 36 è la chiamata a header()... ma il messaggio dice
l'output è cominciato alla riga 6 di index.php, ed è li che devi guardare.
Alla linea 6 c'è l'import del css
Codice:
<style type="text/css">@import "style.css";</style>
Originalmente inviato da
makpaolo
prova a spostare
Codice PHP:
$echo = file_get_contents($site."?parola=$word"); [B]
dopo l'if e else
Niente da fare, mostra il solito errore:
Warning: Cannot modify header information - headers already sent by (output started at index.php:6) in index.php on line 25
Codice PHP:
<?
if($_POST["parola"] OR $_GET["parola"]) {
$site = " "; # url del sito con pagina
$word = $_POST["parola"] ? $_POST["parola"] : $_GET["parola"];
if(empty($word)) {
header("Location: index.php"); exit();
}
else {
$echo = file_get_contents($site."?parola=$word");
if(stristr($echo, "La ricerca di <b>$word</b> non ha prodotto alcun risultato.") == FALSE) {
# echo "<script type=\"text/javascript\">window.open(\"$site?parola=$word\",\"\",\"\");</script>";
# echo "<meta http-equiv=\"refresh\" content=\"0; url=index.php?parola=$word\" />";
header("Location: $site?parola=$word");
}
else {
# echo "<script>window.open(\"$site?parola=$word&md=ff\",\"\",\"\");</script>";
# echo "<meta http-equiv=\"refresh\" content=\"0; url=index.php?parola=$word\" />";
header("Location: $site?parola=$word&md=ff");
}
}
}
?>
Grazie mille a tutti!! <3