I'm writing my first Wordpress plugin and need to add a page that does processing of a form. I have a shortcode that adds a form to any page. That form needs to post to a URL where I can process the data (save to DB and send email).
I initially added a process.php file in my plugin directory and posted to that, which works to get the posted data, but I have no access to any wordpress features (which I need to access the database table I created).
Ideally I would like to have a url like /plugin-name/process that I can use. I'm assuming there has to be a way to have that direct to a function in my main plugin code file, but I can't seem to find how to do that.
I'm a complete noob with Wordpress (primarily a .NET developer, but with PHP experience), so any help would be appreciated.