I have three dropdown lists that depends on each and I want to send them to a database, other but when I try to add a php action like action="testar.php?send" it becomes like testar.php?List1=Blekinge+län&List2=Karlshamn&List3=Karlshamn-Centrum&submit=Send
when I need it to be testar.php?send do any one have any idea gow to solve this?
<head>
<script type="text/javascript">
var categories = [];
categories["startList"] = ["Blekinge län", "Dalarnas län"];
add to the form element the value of method="POST" to tell the form to post the data rather than GET the data as your form is using GET to send data via URL and not to the server via POST.
Also, wrap you code in forum tags please.
We all have baggage to carry in life, unfortunately for me I always get the trolley with the wonky wheel...
Code:
Youre = {
STILL_not_getting_it:function(){
alert("YOU, the original poster / thread starter NEED to POST the code and NOT a LINK.");
},
MissingThePoint:function(msg){
alert("You're missing the point. " + msg);
}
}
Youre.STILL_not_getting_it();
Bookmarks