• User

    Java che cancella i form ...

    Ciao ragazzi eccovi il mio nuovo problema ...
    Praticamente con lo script postato quì sotto accade che al verificarsi della selezione di agenti mi succede che si cancella tutto dalla pagina e mi spunta soltanto il menù a tendina mentre la textbox e l'altro text box scomapiono ...
    Come posso ovviare a questo problemone ???
    Grazie a tutti in anticipo ...

    <?
    require "connessione.php";
    require "header.php";
    include "autentication.php";
    ?>
    <form method="post" name="modulo">
    <table border="0">
    <tr>
    <td>Oggetto:</td>
    <td><input type="text" name="oggetto" /></td>
    </tr>
    <tr>
    <td>Messaggio:</td>
    <td><textarea cols="20" rows="4" name="messaggio"></textarea></td>
    </tr>
    <tr>
    <td colspan="2"></table>
    <select onChange="Menu(this)">
    <option value="">--------</option>
    <option value="agenti">Agenti</option>
    <option value="reseller">Reseller</option>
    <option value="amministratori">Amministratori</option>
    </select>
    <script language="JavaScript" type="text/javascript">
    <!--
    function Menu(links) {
    if (links[links.selectedIndex].value == "agenti") {

    document.write(' <select size="1" name="agente">');
    document.write(' <? $conn = mysql_connect($host,$user,$password)or die ("stiamo marcando male!!!"); ?>');
    document.write(' <? mysql_select_db("$db") or die ("Unable to select database"); ?> ');
    document.write(' <? $dati = mysql_query("select * from agenti"); ?>');
    document.write(' <? while($row = mysql_fetch_array($dati)) { ?>');
    document.write(' <option value=" <? echo "$row[email]"; ?>"><? echo"$row[nome] - $row[cognome] - $row[email]"; ?> </option>');
    document.write(' <? } ?> ');
    document.write('</select>');

    }
    else {
    alert("Il campo.");
    }
    }
    //-->
    </script>

    <input type="button" value="Invia" onClick="Modulo()">
    </form>
    </body>
    </html>