Guys how can I add a custom PHP page to oxwall that will display multi page results?
This tutorial has a HTML template but I need a PHP one any pointers please?
http://www.oxwall.org/forum/topic/19839
this will allow php in a admin custom page just change the myfile.php
to your php file directory
hope this helps
<script
type="text/JavaScript">$(document).ready(function() {
var post_var = "everything";
$.ajax({
type: "POST",
url: "myfile.php",
data: "mypost=" + post_var ,
success: function(responseText) {
$("#response-div").html(responseText);
$("#response-div").find("script").each(function(i)
{
eval($(this).text());
});
}
});
});
</script>
<div
id="response-div"></div>