Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

guys pa check! nag-aundefine

Status
Not open for further replies.

eugcar

The Saint
Advanced Member
Messages
880
Reaction score
0
Points
26
View attachment 278387 <- online user

View attachment 278388

$base_url = http://localhost:8080/

function getChat(uid){
$.ajax({
url : "<?php echo $base_url; ?>serverside/chat/chat_user.php",
data: "uid="+uid,
type: "GET",
dataType: "JSON",
cache: false,
success: function(data)
{
var uname = data.profile_username;
alert(uname);
$.post("<?php echo $base_url; ?>serverside/chat/chat_logs.php?uname="+uname);
$('form')[0].reset();
},
error: function (jqXHR, textStatus, errorThrown)
{
alert('Error get data from ajax');
}
});
}

- - - Updated - - -

na solved ko na. thx sa mga nagview :D
 

Attachments

  • 1.jpg
    1.jpg
    125.4 KB · Views: 10
  • 2.jpg
    2.jpg
    145.3 KB · Views: 10
Status
Not open for further replies.
Back
Top Bottom