Ciao, sono nuovissimo e oggi di buon mattino mi si presenta questo problema:la solita storia...come c..o faccio a passare i dati di un form da un pag. html a una .php??Quel che ho fatto è il seguente:
PAG. prova.htm
<html>
<head>
<title>
PROVA PHP
</title>
</head>
<body>
<form name="moduloDiScelta" method="POST" action="riassunto.php" >
<input type="text" name="campionamento" id="campionamento" value="" size="2" maxlength="2">
Intervallo di campionamento
<input type="reset" value="cancella">
<input type="submit" name="submit" value="Avanti">
</form>
</body>
</html>
PAG. riassunto.php
<html>
<head>
<title>Documento senza titolo</title>
</head>
<body>
<?php
$campionamento1=$_POST['campionamento'];
echo "$campionamento1";
?>
</body>
</html>
..è tutta la mattina che mi ci sbatto la testa, nella pagina php non mi scrive nulla..uffa!...![]()
Grazie fin da adesso e ciao![]()