We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

add custom PHP multi page? | Forum

Marcus
Marcus Nov 25 '15
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
ross Team
ross Nov 25 '15
Topic was moved from General Questions.
Dnyan
Dnyan Dec 1 '15
your question will remain unanswered even if you come back after decade.

so dont waste your time here i already wasted more than a month.

go and get hooked on a community soft which have strong after install trouble shoot and feature installing support + support which you really expect that you will get from there.
tammy harris
tammy harris Dec 4 '15

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>

Marcus
Marcus Dec 5 '15
OMG this is so awesome that so much many will appreciate this so cool.

Thanks Tammy
tammy harris
tammy harris Dec 5 '15
Its not me was someone else who posted that code here in another forum and i have used it and it works