Possible Duplicate:
Posting a form using AJAX
I have this code where the user insert some values:
<div class="insertbox" style="center">
<label for="nome">Seleziona il gestore:</label><br/>
<select id="nome" name="nome">
<option value="" selected="selected">-- seleziona --</option>
<option value="Eni" id="Eni">Eni</option>
<option value="Esso" id="Esso">Esso</option>
</select><br/>
Address: <br/>
<input type="text" name="address" id="address"/>
<input type="submit" name="invia" onclick="check_form()"/>
</div>
I want to have the values inserted to put them in my database. How can I do it without using a form with action and $_POST['..]? I need to not use any action (and the $_POST['..])for other problem with the rest of the code.


$_GET. But these are the only two options – George Wilson Jan 31 at 16:24$_POST– Antony Jan 31 at 16:25