Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+3 votes
882 views
in Q2A Core by
hello expert
    i code single php file  
and create page at admin console
how can i include my php file to page ?

      please

2 Answers

0 votes
by

Create a page plugin and include your PHP file inside the process_request function.

by
thank you Scott  
    do you have some example for me
  ( i already read it but not clear > < )
anyone can example for me ?
by
Yes, I also need an example for this.
by
qa-plugin/example-page may help you.
–1 vote
by

You can add php in html page like this

<html>
 <head>
  <title>PHP Test</title>
 </head>
 <body>
 <?php echo '<p>Hello World</p>'?> 
 </body>
</html>

...