What are the recommended settings in Notepad++ for saving PHP scripts to ensure proper execution in web browsers?

When saving PHP scripts in Notepad++, it is important to ensure that the file is saved with the correct encoding and file extension to ensure proper execution in web browsers. To do this, go to the "Encoding" menu in Notepad++ and select "Encode in UTF-8" to save the file with the correct encoding. Additionally, make sure to save the file with a ".php" extension to indicate that it is a PHP script.

<?php
// Your PHP code here
?>