Salve, ho creato uno script con fopen, fwrite, fclose, ed ho inserito questo codice:
Codice PHP:
fwrite($f, "<?php if (\"$utente\"!=\"password\"){header(\"Location: accessonegato.htm\");exit;}?>\r\n");
ed ho notato che sul file dove deve scrivere viene scritto:
Codice PHP:
<?php if (""!=\"password\"){header(\"Location: accessonegato.htm\");exit;}?>
come potrei far in modo che venga scritto
Codice PHP:
<?php if (\"$utente\"!=\"password\"){header(\"Location: accessonegato.htm\");exit;}?>
al posto di:
Codice PHP:
<?php if (""!=\"password\"){header(\"Location: accessonegato.htm\");exit;}?>
?
EDIT: PROBLEMA RISOLTO scrivendo:
Codice PHP:
fwrite($f, "<?php if (\$utente!=\"password\"){header(\"Location: accessonegato.htm\");exit;}?>\r\n");