Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
You could use a $_GET. But these are the only two options – George Wilson Jan 31 at 16:24
Why wouldn't you use a form? The only way a form can submit data is with an action like GET or POST. – j08691 Jan 31 at 16:24
I would suggest Voodoo Magic – Ethan Jan 31 at 16:24
"for other problem with the rest of the code" - fix this, not $_POST – Antony Jan 31 at 16:25
Thanks for Ethan's comment. If you're not able to suggest anything, maybe you're not so prepared as you're funny. – user1938352 Jan 31 at 16:36
show 1 more comment

marked as duplicate by Mike B, Peter O., rhalbersma, Aleksander Blomskøld, Arun Feb 3 at 9:00

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

Unless you submit a form (GET/POST) you cannot transfer data from client to PHP from form fields. However you can use some javascript to redirect to your php page and send field values in the URL. That you can then access as $_GET in php

share|improve this answer
I know that I can use $_GET instead of $_POST, but then I have the same problem. For this, I asked something different without use any of these methods, if it exits. – user1938352 Jan 31 at 16:31

You can use AJAX. I assume that your problem is probably coming from a need not to refresh the page.

If you are modifying existing records in a database, the correct http method to use is POST.

Also assuming you aren't familiar with ajax, it is much easier done with a library such as jQuery.

$.ajax({
 type:'post',
 data:get_data(),
 url:'action.php'
 success:function(response){
  //other stuff after it finishes
 }
});

it may also be easier to add something like this:

function get_data()
{
 var data = {};
 data.value_1 = $('#value_1_input').val();
 return data;
}

then put get_data() in the data property of the ajax call

This will submit data without a form and without refreshing the page.

share|improve this answer
"I assume that your problem is probably coming from a need not to refresh the page." Yes, exactly. I'll try, thanks – user1938352 Jan 31 at 16:33

You can use Javascript to extract the values and send them via Ajax, for example.

share|improve this answer
Can you give me an example? – user1938352 Jan 31 at 16:38
Check out jQuery's Ajax functions. – Indianer Jan 31 at 16:40

You can access the values of a GET or POST through $_REQUEST. It's the lazy way of seeing what was passed without having to look at the $_SERVER['REQUEST_METHOD'] and then choosing the $_GET or $_POST supervars.

share|improve this answer
What's the relation with $_SERVER['REQUEST_METHOD'] and get or post variable? You can get, get variables in post request too. – itachi Jan 31 at 16:58
That variable with indicate if the data was sent as POST or GET so you can look specifically into the correct supervars rather than just looking into both to see if things are there. It is sloppy to just ask $_GET to retrieve data if the method wasn't even GET. – Crossphire Development Jan 31 at 17:31

Not the answer you're looking for? Browse other questions tagged or ask your own question.