Hello !
I know that the form entries is saved in a table in my database. But i could not find out how to display these form entries to a web page.
Started 7 months ago by roarr | 5 posts |
Hello !
I know that the form entries is saved in a table in my database. But i could not find out how to display these form entries to a web page.
You will need to create a custom php page and use sql to pull out your form entries into the web page. You can try to use the method that posted in here :
http://www.appnitro.com/forums/topic/drop-downs-and-mysql?replies=11
MachForm Support
Thanks for support. I have tryed it but without success. I have made a form with to fields - one single line text and one paragraph text. In the MySql database i found the entries in the table ap_form_2 , element_1 and element_2 by using this sql query:
SELECTelement_1,element_2
FROMap_form_2 .
Then i used a MySql tool to create a PHP code of the sql guery:
$sql = 'SELECTelement_1,element_2FROM ap_form_2';
Finally i past this code in a PHP page and upload it to my website. Unfortunately the page displayd nothing. What is wrong ?
This would be nice to have - a simple page where they can choose which form (drop down list displaying form names) they want to view the entries for and have it export it to Excel.
Hi roarr,
I didn't see the space between "select" and element id, are you sure the sql is correct ? try to change it with :
$sql = 'SELECT element_1,element_2 FROM ap_form_2';
if it still not working, you can send the php page to
customer.service[at]appnitro.com.
we will check it.
Hi jhinkle,
Currently, you able to see the entries and export the entries from machform admin page. But not for the users/clients.
Thank you for your suggestions.
MachForm Support
You must log in to post.