ProCom
Well-known member
Disclaimer: I'm not a coder, but I pretend to be one on TV
Every once in a while I'd love to look at some stats / data that isn't readily available in xF or a plugin. On my old platform (punbb) I had some help from a guy who was able to create some really super basic pages that had basic SQL queries.
For example, the page hat the following at the top:
... and under that was some code that would allow me to insert my SQL queries and the page would run that query and display the info.
It was super simple... no headers, styling, login access rights/credentials... just a page I could bookmark and get quick access to data without having to login to PhpMyAdmin, browse to the table, copy the SQL query, paste the query, run the query, etc. Just a simple page bookmark.... BAM!
I know there are ways to create plugins (over my head) and I run via PhpMyAdmin (too many steps) but I'd love to have a page I can bookmark and view anytime I need it.
Hopefully that makes some level of sense?
Thanks in advance for your help!!
Every once in a while I'd love to look at some stats / data that isn't readily available in xF or a plugin. On my old platform (punbb) I had some help from a guy who was able to create some really super basic pages that had basic SQL queries.
For example, the page hat the following at the top:
<?php
define('PUN_ROOT', './');
require PUN_ROOT.'include/common.php';
... and under that was some code that would allow me to insert my SQL queries and the page would run that query and display the info.
It was super simple... no headers, styling, login access rights/credentials... just a page I could bookmark and get quick access to data without having to login to PhpMyAdmin, browse to the table, copy the SQL query, paste the query, run the query, etc. Just a simple page bookmark.... BAM!
I know there are ways to create plugins (over my head) and I run via PhpMyAdmin (too many steps) but I'd love to have a page I can bookmark and view anytime I need it.
Hopefully that makes some level of sense?
Thanks in advance for your help!!