In PhpStorm, is there any way to add a panel to show a html/php code preview (like in RapidPhp) ?
1 Answer
You could run you pages in the browser if you enable the PHP Built-in Web Server
Referenceing: Post Link
You have to configure a run configuration for your project first.
Go to Run -> Edit Configurations, click on "PHP Built-in Web Server" and then press "+". You should see something like this:
Run/Debug Configurations
After saving the settings you can run the web server via Run -> Run ''. It should now serve up the pages to your browser.

