I’ve got the following function
function make(point, name, message, type, file, id, lat, lng)
I want this function to pass all of these Javascript variables to a php file which would open in a window when a link is pressed how would I do this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
make sure the values of your variables are urlsafe, i’d urlencode them with:
Edit re your comment
but if thats all you want, you might as well just have the link open in a blank window:
It depends if
make()is doing something else other than opening a window, i suspect so?