Advanced C Programming
Generics, C11 Threads, Atomics
PHP
Concepts and Introduction
Schedule - Day 1
Session |
Topic(s) |
10:00 to 11:00 |
Workshop Introduction |
11:15 to 12:30 |
PHP Basic Syntax |
1:15 to 2:15 |
Sessions and Filesystems |
2:15 to 3:00 |
Form Handling, File Uploading |
3:15 to 4:30 |
Built-in PHP functions |
Schedule - Day 2
Session |
Topics |
10:00 to 11:30 |
PHP Best Practices |
11:45 to 12:30 |
PHP Project Walk-through |
1:15 to 4:15 |
Student Project |
Our technology stack
Apache, PHP, and MySQL
That's where the name *AMP comes from!
PHP
- An interpreted programming language
- PHP - "PHP: Hypertext preprocessor"
Apache Web Server
- Used with PHP to develop websites
- Can serve static files
MySQL
- Used with PHP to develop websites
- Can serve static files
How they work together
Static file serving
PHP Hello World
<?php
echo "Hello World";
PHP in HTML
<html>
<body>
<p><?php echo "Hello World"; ?></p>
</body>
</html>
Code Indentation
- Indent code properly
- Use consistent spacing
- Helps you find errors easily
- Helps us help you better
What you'll learn
- Writing PHP the right way
- Writing good code in general
- Creating simple websites using PHP
What is expected from you
- Work on the assignments
- Do your own research
- Read the PHP Manual
- Before you ask questions,
try working on them for a bit