Ciao a tutti, ho il seguente codice che mi permette di vedere sulla sinistra 3 menù a tendina concatenati tra loro, e a fianco ad ogni menù c'è un input text che utilizzo qualora nel menù a tendina manchi la parola desiderata. Il problema è quando schiaccio l'input submit non accase nulla, non visualizzo ne' messaggi di errore ne' altro, sapreste dirmi il perchè?
Grazie
Codice PHP:
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1"> <title>Titolo</title>
<?php include "insertclass.php";
$OpMenu = new OptionMenu();
$OpMenu->JsHeader();
?>
</head>
<body bgcolor='#FAEBD7'>
<p align="center"><u>[b]<FONT FACE="Verdana, Arial, Helvetica, sans-serif" COLOR="#FF0000" SIZE="5"> CREAZIONE GRANDE CATEGORIA - CATEGORIA - SOTTOCATEGORIA</FONT>[/b]</u></p> </br>
<hr color='red'>
[b]Scegli la Grande categoria dal menù option[/b]
<p align="center">
<?php
$OpMenu->ShowGrandicategorie();
?>
<form method="POST" action="inserimento_grande_cat_sotto2.php">
<p align="center">
[b]Se non trovi la Grande categoria desiderata è necessario crearla[/b]
<p align="center">
[b]Nome grande categoria[/b]:<input type="text" name="grandecategoria" size="25"></td> <align="center">
<hr color='red'>
[b]Scegli la Categoria dal menù option[/b]
<?php
$OpMenu->ShowCategorie();
?>
<p align="center"> [b]Se non trovi la categoria desiderata è necessario crearla[/b]
<p align="center">
[b]Nome categoria[/b]:<input type="text" name="categoria" size="25">
</td> <align="center">
<hr color='red'>
[b]Scegli la Sottocategoria dal menù option[/b]
<?php
$OpMenu->ShowSottocategorie();
?>
<p align="center">
[b]Se non trovi la sottocategoria desiderata è necessario crearla[/b]
<p align="center">
[b]Nome sottocategoria[/b]:<input type="text" name="sottocategoria" size="25"></td> <align="center">
<hr color='red'>
<p align="center"> <input type="submit" value="Inserisci" name="B1"> </br>
</form>
</body>
</html>