I am wondering if there is a way to create a shortcode to use in the visual page builder on a page in Wordpress that would allow me to use it as a PHP include. I need to add some PHP code from a file called form.php into my page and the visual page builder only let's you add HTML. I would prefer not to use a plug-in if possible. I need to use this code but it's not recognizing it.
<?php include 'form.php';?>
Absolutely - you can have a shortcode that takes one parameter (the file to include) and simply outputs its content:
Hope this helps!