All pastes #2109054 Raw Edit

Unnamed

public text v1 · immutable
#2109054 ·published 2012-02-02 14:20 UTC
rendered paste body
function login(){
		$.post('http://barker-creations.net/geopoly/ajax/login/login.php', 
			{user: form.username.value,
			 newUser: "false"}, 
			 function(output){
				$('#debug').html(output);
			 });
	}
	
	function register(){
		$.post('http://barker-creations.net/geopoly/ajax/login/login.php', 
			{user: form.username.value,
			 newUser: "true"}, 
			 function(output){
				$('#debug').html(output);
			 });
	}