sudo apt update
sudo apt upgrade
sudo apt install curl vim git
| <!DOCTYPE HTML> | |
| <html lang="en-US"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title></title> | |
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script> | |
| </head> | |
| <body> | |
| <form action=""> | |
| Name: <input type="text" name="name" id="name"/><br/> |
| // post query for page.php | |
| =---------------------------------------------------------= | |
| <div class="col-md-12"> | |
| <?php if(have_posts()) : ?> | |
| <?php while(have_posts()) : the_post(); ?> | |
| <h2><?php the_title(); ?></h2> | |
| <?php the_content(); ?> | |
| <?php endwhile; ?> | |
| <?php else : ?> | |
| <h2>404! Not found.</h2> |