Всем привет! Я только начинающий на js, помогите с проблемой хочу данные js передать в php методом post.
Вот код:
window.onload = (function() {
VK.init(function() {
var parts=document.location.search.substr(1).split("&");
var flashVars={}, curr;
for (i=0; i<parts.length; i++) {
curr = parts[i].split('=');
flashVars['viewer_id'] = 1;
flashVars[curr[0]] = curr[1];
}
var viewer_id = flashVars['viewer_id'];
VK.api("users.get", {uids:viewer_id,fields:"photo_big"}, function(data) {
document.getElementById('user_info').innerHTML = data.response[0].first_name + ' ' + data.response[0].last_name + '<br />';
var image=document.createElement('img');
image.src=data.response[0].photo_big;
user_info.appendChild(image);
});
});
});
<form name="myForm" id="myForm" action="page.php" method="post">
<div id="user_info" style="text-shadow: 0.1em 0.1em 0.2em black; color: aliceblue;"></div>
<button class="skip4">Далее</button>
</form>
Нужно var viewer_id = flashVars['viewer_id']; и first_name и last_name передать методом post в page.php.