How to Write PHP Scripts
Part 1 of 3:
Getting Started with Echo Statements
- Open a text editor. This is the program you will be using write and edit your code.
- Notepad can be accessed on any version of Windows using ⊞ Win + R > Notepad.
- TextEdit can be accessed on Mac by going to Applications > TextEdit.
- Type a simple statement into Notepad. A section of PHP code begins and ends with bracketed PHP tags (''). 'Echo' is a very basic statement (an instruction to the computer) in the PHP language that will output text to the screen. The text you want to echo must be enclosed in quotation marks and end in a semi-colon.
- The code should look something like .
- Save the file with name 'hello world' and the extension .php. This is done by navigating to File > Save As...
- In Notepad, add .php to the end of the filename and enclose in double quotations. This ensures the file will not be converted into a basic text file by Notepad. Without the quotation marks, the file will become hello world.php.txt. Alternatively, you can select the drop down menu under Save as type and change it to "All Files (*.*)" which will leave the name exactly how you type it and the quotes will not be needed.
- In TextEdit, no quotations marks are necessary, but a popup will appear asking you to verify that you want the file saved as .php.
- Make sure you save the file to your 'server's' document root directory. Typically this is the folder named 'htdocs' in your Apache folder on Windows, or /Library/Webserver/Documents on Mac, but can be set by the user manually.
- Access the PHP file with a web browser. Open your preferred web browser and type this address in the address bar using the name of your php file: http://localhost/hello world.php. Your browser window should display the echo statement.
- If you receive an error message, make sure you typed the code correctly as shown above, including the colon.
- Also make sure that your file is saved into the correct directory.
Part 2 of 3:
Utilizing PHP and HTML
- Understand the 'php' tags. The '' tags tell the PHP engine that everything between them is PHP code. Everything outside the two tags is treated as HTML and ignored by the PHP engine and sent to your browser the same as any other HTML. The important thing to recognize here is that PHP scripts are embedded inside regular HTML pages.
- Understand the statement between the tags. Statements are used to tell the PHP engine to do something. In the case of an echo statement, you are telling the engine to print what is inside the quotes.
- The PHP engine itself never actually prints anything to your screen. Any output generated by the engine is sent to your browser as HTML. Your browser does not know that it's getting PHP output. As far as the browser is concerned, it's getting plain HTML.
- Use HTML tags to make your statement bold. Adding HTML tags can alter the output of the php statement. The '' '' tags will add bold formatting to any text placed inside of them. Note that these tags appear on the outside of the text, but inside of the quotations marks of the echo statement.
- You want your code to look something like:
- You want your code to look something like:
- Save and open the file in the browser. Go to File > Save As… and save the file as "helloworld2.php', and open it in your browser by using the address: http://localhost/helloworld2.php. The output is the same as before, but this time the text is in bold.
- Make sure you save the file to your 'server's' document root directory. Typically this is the folder named 'htdocs' in your Apache folder on Windows, or /Library/Webserver/Documents on OSX, but can be set by the user manually.
- Edit the file to add a second echo statement. Remember, statements need to be separated by a semicolon.
- Your code should look something like:
- Your code should look something like:
- Save and run the file as "hello world double.php". The page will display two echo statements, listed in order, on two lines. Notice the '
' on the first line. This is HTML markup to insert a line break.- If you didn't add this, your output would look like this:
Hello World!How are you doing?
- If you didn't add this, your output would look like this:
Part 3 of 3:
Getting to Know Variables
- Think of variables as containers for data. To manipulate data, be it numbers or names, you need to store the data in a container. This process is called declaring the variable. The syntax for declaring a variable is '$myVariable = 'Hello World!';'
- The dollar sign ($) at the beginning tells PHP that $myVariable is a variable. All variables must start with the dollar sign, but the name of the variable can be anything.
- In the above example, the value is "Hello World!", and the variable is $myVariable. You're telling PHP to store the value at the right of the equal sign, into the variable at the left of the equal sign.
- A variable containing a text value is known as a string.
- Call the variable. Referring to a variable in the code is known as a call. Declare your variable, then echo the variable instead of typing out the text.
- Your code might look something like:
- Your code might look something like:
- Save and run the file. Go to File > Save As… and save the file as 'myfirstvariable.php'. Open your browser and navigate to http://localhost/myfirstvariable.php and the script will print the variable. The output looks the same as printing plain text, but how it was achieved is different.
- Make sure you save the file to your 'server's' document root directory. Typically this is the folder named 'htdocs' in your Apache folder on Windows, or /Library/Webserver/Documents on OSX, but can be set by the user manually.
- Use variables with numbers. Variables can also contain numbers (known as integers), and then those numbers can be manipulated using simple mathematical functions. Start by declaring three variables called '$mySmallNumber', '$myLargeNumber', and '$myTotal'.
- Your code should look something like:
- Your code should look something like:
- Assign integer values to the first two variables. Give an integer value to '$mySmallNumber' and 'myLargeNumber'.
- Note that integer values do not need to be contained in quotation marks. That will cause numbers to be treated as a text value like the 'Hello World!' variable.
- Your code should look something like:
- Use the third variable to calculate and print the sum of the other variables. Rather than doing the math yourself, you can call the two variables in the '$myTotal' variable. Using a mathematical function, the machine will calculate the sum for you. To print the variable, you need only add an echo statement that calls the variable after the declaration.
- Any change to either integer variable would be reflected when printing the '$myTotal' variable with echo.
- Your code should look something like:
- Save the file and run this script. Your browser window will display a single number. That number is the sum of the two variables called in the '$myTotal' variable.
- Review your string variables. Using a variable to store text allows you to call that variable any time you want to use the store value instead of constantly typing out the contained text. It also allows for more complex manipulation of the stored data moving forward.
- The first variable, $myVariable, contains a string value; "Hello World!". Unless you change the value, $myVariable will always contain the value "Hello World!".
- The echo statement prints the contained value of $myVariable.
- Review your integer variables. You have explored basic manipulation of integer variables by using a mathematical function. The resulting data can be stored into another variable. This is only the beginning of what can be accomplished with these variables.
- The two variables, $mySmallNumber, and $myLargeNumber are each assigned an integer value.
- The third variable, $myTotal, stores the added values of $mySmallNumber and $myLargeNumber. Since $mySmallNumber holds one numeric value, and $myLargeNumber holds a second numeric value, this means $myTotal holds the value of the first number added to the second number. This value can change with alterations to either of the included variables.
Sample PHP Scripts



5 ★ | 1 Vote
You should read it
May be interested
- Office Scripts with the ability to automate routine tasks in Excel is now available on the webmicrosoft has officially announced that the office scripts feature is now supporting excel on the web for all eligible users. to use, you just need to click on the automate tab on the menu bar.
- Learn about the Write Zero methodmany file shredder and data destruction programs support data sanitization method based on write zero software to overwrite existing data on storage devices such as hard drives.
- What is a shell?shell is an environment in which we can run commands, programs and shell scripts. there are different versions of shell, which differ only from the version of the operating system. each version of shell has its own set of recognized commands and functions.
- Why write neat and organized HTML?you will get many benefits from writing clean and precise html code. here's why it's a good idea to write optimal html code.
- How to enable / disable Disk Write Caching in Windows 10disk write caching is a feature that improves system performance, using ram memory to collect write commands sent to the data storage device, then cached until the device. slower archives can be written to.
- What is JD? What does JD mean?for employers or job candidates, jd is an important factor for both parties. so what does jd mean?
- 5 IF commands help use Batch script smarterif you have to do a lot of work with windows batch files, the if command is a very powerful tool to increase the flexibility of these scripts. this article will introduce you to the 5 if commands used for batch files along with the exact syntax and specific examples for each command.
- The best apps that support writing and writing notes on Androidif you need to write an essay, a novel or write a contract, the following applications will support you with the best way to write stories and write notes on android.
- How to write exponents in Excel, write upper and lower indices in Excelthis article will show you how to write exponents (superscripts), write subscripts in excel using keyboard shortcuts, add quick upper and lower index writing buttons to the toolbar and a few other useful tips.
- 7 ways to fix, fix 'Write Protection' error on USBwrite protection error or the disk is write protected. remove ghi ghi lưu hoặc sử dụng đĩa khác trên usb will prevent you from viewing, editing or deleting data in your usb. how to fix this usb protection write error?