PHP development...LOGIN

PHP development message board page analysis

Almost everyone who develops PHP has done a message board project. The message board project is still somewhat difficult for some novices because the page involves mixed programming of PHP and HTML, paging, and permissions. , and some message board functions with replies also use PHP's recursion, so it is not so easy for some PHP novices to do, so this tutorial will lead you to make a simpler message board project.


Message board project analysis


Generally, message boards leave messages and display messages on the same page. As shown in the picture below

res.jpg

#, the display page generally displays the page we publish on the message page.

This requires html layout and css knowledge. The next chapter will show you the page layout of our tutorial and the css knowledge used


Create the PHP file we need

Users post messages and display the messages we publishReceive the data from the ressage.php page and store the data in the database
File nameressage.phpressage_post. phpressage_delete.php


##Main functions


Delete the messages we posted


Next Section

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>留言板</title> <body> <h1> 留言板 </h1> </body> </html>
submitReset Code
ChapterCourseware