You don't need any fancy programs to work with PHP. In fact, all Window's computers come standard with a program called Notepad, that is used to create plain text documents. Here is how you use it to create a PHP file.
More PHP / MySQL Quick Tips
- Open Notepad: By default you can usually find Notepad by choosing Start > All Programs > Accessories > Notepad from your start menu.
- Type in your PHP code: Enter your PHP program into Notepad.
- Save your work:
- Choose Save As from the File menu.
- Enter the file name as your_file.php being sure to include the .php extension.
- Then set the "Save As Type" to All Files.
- Finally, hit the Save button.

