PFM PHP try



DBGRID
http://pfmarrodev.altervista.org/database/dbgrid/elenco_regioni.php
http://pfmarrodev.altervista.org/database/dbgrid/elenco_province.php
http://pfmarrodev.altervista.org/database/dbgrid/elenco_comuni.php
DBGRID2
http://pfmarrodev.altervista.org/database/dbgrid2/elenco_regioni.php
http://pfmarrodev.altervista.org/database/dbgrid2/elenco_province.php
http://pfmarrodev.altervista.org/database/dbgrid2/elenco_comuni.php
Modulo

Ricerca

Aggiunta Record




Create HTML Form in Seconds


http://www.phpform.org/
wizard http://www.phpcodewizard.com/mysql-generated-drop-down-box/index.php

Generate a Drop Down Box From MySql Table Fields:

Create a dynamic drop down box grabbing two fields from a MySql database table, the primary key and some short text field. The form uses HTML <select> tag, it uses the text field to show on the drop down box and the table's primary key for selection value.


//// Code Generated By PHPCodewizard.com/////

<select size="1" name="select">

<?
$result=mysql_query("select * from `regioni` ORDER BY `id` DESC");
while ($row=mysql_fetch_array($result)){
$id=$row['id'];
$regione=$row['regione'];?>
<option value="<? echo $id; ?>"><? echo $regione; ?></option><?}?>
</select>  



wizard
http://phpformgen.sourceforge.net/new_demo/phpformgen/
wizard
form
http://www.formgenics.com/build/index.php?route=text






da approfondire
software e form
http://www.w3schools.com/php/php_forms.asp