Home > Article > Backend Development > PHP study notes (1) Understand the PHP development environment and build PHP from entry to proficiency PHP learning website php100
1,
appserv package installation
dreamweaver application, I have learned this before
site creation
2,
are tag pairs of php, and all codes in the tag pairs are Processed as PHP code
You can also use asp style <%
and sgml style The meaning of out.print and print in Python are the same
Each line of code ends with a semicolon;
Assignment:
1. Use the echo statement to output the string "Congratulations on embarking on the path of PHP programming"
2. Use the echo statement to output a 4*3 pixel table
echo "Welcome to the world of PHP, haha!";
echo "Congratulations on embarking on the path of PHP programming!";
echo "< ;table width='20' border='1'>";
Pay attention to single and double quotation marks
echo ""; echo " "; ";
echo " ";
echo " ";
echo "
echo "";
echo " ";
echo " ";
echo " ";
echo "< ;/tr>";
echo ""; ";
echo " ";
echo " ";
echo " ";
echo "
echo "";
?>
The above introduces the PHP learning notes (1) Understanding the PHP development environment and construction, including PHP learning content. I hope it will be helpful to friends who are interested in PHP tutorials.