ciao a tt , cm al solito mi rivolgo a voi x un mio prob. , una volta mi sn fatto creare un codice php x creare una pagina html:
Codice PHP:
<html>
<body>
<?
if(!isset($_POST['testo']) || !isset($_POST['nome_file'])){
?>
<form action="area_privata.php" method="POST">
<textarea name="testo" rows="5" cols="50"></textarea><br>
Nome file: <input type="text" name="nome_file"><br>
<input type="submit" name="save" value="Salva">
</form>
<?php
}else{
$nome_file = 'creation/'.basename(stripslashes($_POST['nome_file'])).'.html'.
$testo = stripslashes($_POST['testo']);
if(
is_file($nome_file)){
echo
"Il nome scelto &egrave; gi&agrave; stato utilizzato, usane un altro";
}else{
$open = fopen($nome_file, 'w');
fwrite($testo, $open);
fclose($open);
echo
"Il file <a href="$nome_file" target="_blank">$nome_file</a> &egrave; stato creato";
}
}
}
?>
</body>
</html>
Ora xò vorrei che la pagina sia .php e che c'è un template, cioè la pagina creata sia, x esempio, nel table:
Codice:
<table>
<tr>
<td>
qui il testo creato dall'utente!
</td>
</tr>
</table>
Come posso fare? grazie in anticipo e ciaoo