- Joined
- Mar 19, 2013
- Messages
- 16
- Reaction score
- 0
i need to create the file core.php for this file whit ajax
HTML:
function show(val) {
$("#content").empty().append('<center><img src="images/load.gif"><br>Loading web module,Please wait...</center>');
$.ajax(
{
type: "POST",
url: "includes/core.php",
data: "content=" + val + "&module=content",
cache: false,
success: function(msg)
{
$("#content").empty().append(msg).hide().fadeIn("slow");
}
});
}