What are common pitfalls when using Dreamweaver to create PHP pages?

One common pitfall when using Dreamweaver to create PHP pages is not properly setting up the server behaviors or testing the PHP code within Dreamweaver's design view. To solve this issue, make sure to set up the server behaviors correctly and test the PHP code in a web browser to ensure it functions as expected.

<?php
// Sample PHP code snippet
echo "Hello, World!";
?>