https://github.com/julianamancera/lab-1_app_dev
Applications Development & Emerging Technologies - Laboratory 1
https://github.com/julianamancera/lab-1_app_dev
application-development emerging-technology
Last synced: about 1 month ago
JSON representation
Applications Development & Emerging Technologies - Laboratory 1
- Host: GitHub
- URL: https://github.com/julianamancera/lab-1_app_dev
- Owner: JulianaMancera
- Created: 2025-02-03T04:24:30.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-06T03:54:28.000Z (over 1 year ago)
- Last Synced: 2025-03-04T07:17:32.621Z (about 1 year ago)
- Topics: application-development, emerging-technology
- Language: PHP
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Lab-1_App_Dev
## Instructions
You will have some HTML in the starter code for this lesson. It contains a blog post with a title, author, and
body. Your job is to add a few variables to the file and use them to display the blog post. You can use the
same text/content or add new content. Define your variables at the top of the file and use them in the HTML
below.
- Add a variable called $title and set it to the title of the blog post and part of the title of the page.
- Add a variable called $author and set it to the author of the blog post.
- Add a variable called $body and set it to the body of the blog post.
- Add a variable called $pageTitle with the string "Brad's PHP Blog | and the title of the blog post.
- You can use concatenation or interpolation to combine the two strings. If you use concatenation, be
sure to escape the apostrophe/single quote in "Brad's".