Morpheusweb.it - Risorse per webmaster: script, ASP.NET, C#, Visual Basic .Net, tutorial, asp, javascript, css, php, html, java, ADO, VBScript, forms, frames, Active Server Pages, Dynamic HTML, database, gratis per webmaster e webdesigner

Forms a PHP

Forms



La gestione dei form in PHP è molto comoda. Abbiamo l'accesso alle variabili inviate dal form tramite le variabili $_POST["nome_campo"]
Facciamo un esempio per capire meglio.

<html>
<body>
<form action="test.php" method="POST">
Come ti chiami? <input type="text" name="nome" />
<input type="submit" />
</form>
</body>
</html>

E la pagina test.php

<html>
<body>
<?php
echo "Ciao, " . $_POST["nome"] . " ti piace PHP?";
?>
</body>
</html>


Post e Get

Abbiamo utilizzato il metodo POST per il submit,
Esiste un altro metodo comune per inviare i dati di un form, è il metodo GET, tramite cui le variabili ed i valori del form vengono passate nella querystring.
Qualora volessimo utilizzare GET, le variabili le troveremmo tramite $_GET["nome_campo"]

Facciamo un esempio per capire meglio.

<html>
<body>
<form action="test.php" method="GET">
Come ti chiami? <input type="text" name="nome" />
<input type="submit" />
</form>
</body>
</html>


E la pagina test.php

<html>
<body>
<?php
echo "Ciao, " . $_GET["nome"] . " ti piace PHP?";
?>
</body>
</html>


Stampa la pagina


 

Inizio pagina

risorse per webmaster

Tutorial PHP


manuale php, php tutorial if, php tutorial session, php tutorial string, php tutorial upload, tutorial in php, tutorial mysql php, tutorial php, tutorial php download, tutorial php mysql, manuali php, php try catch, Variabili php, Operatori php, Server Side Includes php, if then php, while php, for php, php Forms, php Sessioni e Cookies, Funzioni php, Programmazione ad Oggetti con php, Eccezioni php, Array php, Stringhe php, Funzioni per le Date php Funzioni Ftp php, Funzioni Http php, Funzioni per le Immagini php, Funzioni Matematiche php, php e Database Odbc, Funzioni Mysql php, php Files

PHP


ASP.NET, guida, Tutorial,




Vai nel sito Morpheusweb.it - Risorse per Webmaster
asp.net, vb.net, dotnet

Vai nel sito Morpheusweb.it - Risorse per Webmaster
asp, ASP.NET

Morpheusweb.it - manuale php, php tutorial if, php tutorial session, php tutorial string, php tutorial upload, tutorial in php, tutorial mysql php, tutorial php, tutorial php download, tutorial php mysql, manuali php, php try catch, Variabili php, Operatori php, Server Side Includes php, if then php, while php, for php, php Forms, php Sessioni e Cookies, Funzioni php, Programmazione ad Oggetti con php, Eccezioni php, Array php, Stringhe php, Funzioni per le Date php Funzioni Ftp php, Funzioni Http php, Funzioni per le Immagini php, Funzioni Matematiche php, php e Database Odbc, Funzioni Mysql php, php Files