Jump to content
php.lv forumi

jQuery.ajax() uz PHP


Sangsom

Recommended Posts

Sveiki, saku uzreiz ar jQuery esmu uz "Jūs", taču ir radusies vajadzība viņu izmantot proti dabūt uz PHP mainīgo jQuery vērtību..

Problēma sekojoša, jau meklējos info kā to izdarīt un nonācu pie risinājumiem, kā 

jQuery.post()

 

un 

 

jQuery.ajax()

 

itkā viss liekas vienkārši kods ir sekojošs:

 

var rino = "Renaro";
$.ajax({
	type: 'POST',
	data: {"test": rino},
	url: 'elements.php',
	success: function(){				
	        alert(rino);
	},
	error: function(){
		$('.box').html("Nope, nothing here");
	}
});

 

Pēc idejas, kā es saprotu, elements.php lapā ir jābūt pieejamai šai vērtībai caur $_POST["test"];, bet reāli mēģinot izvadīt to ar 

echo $_POST['test'];

nekas nav. Paskaidrojiet man durakam, kas par problēmu? Kā man dabūt šo vērtību uz PHP? 

Paldies.

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...