So yeah, this is happening.
I’ve never attempted anything like this before, so this is going to be quite interesting.
Going to need to push SQL data from a local database to remote database. Then create a WordPress Plugin using HTML, PHP, CSS, JS, and SQL and then implement some kind of search facility.
At the end of day one, I’ve managed to create a boilerplate plugin (MR Player Stats)
Strangely enough, the hardest thing so far was tying to get the CSS script to link to the plugin. Got there in the end. Hack hack hack. I really should read a book.
function wpdocs_theme_name_scripts() { wp_enqueue_style( 'style-name', plugins_url() . '/medieval-realms-player-stats/css/mrps_style.css'); } add_action( 'wp_enqueue_scripts', 'wpdocs_theme_name_scripts' );