Open up MAMP and Sublime text
<html>
<body>
<font size="20">
<?php
echo "Hi my name is ";
?>
</body>
</html>
Create a Form
Forms ( text radio and drop down selection )
Create a simple form to collect Customer Name , T Shirt Size and Gender ( M F )
HELP: See program code
Process the order
process_shirt_order
Write a program to process the customer order. If the customer requested size small inform the user Sorry we have sold out of size Small else inform the customer Dear Customer thank you for your order of shirt size (Large or Medium). Add comments to your php code.
HELP: See program code
Challenge
Challenge: Create process.asp so that it will echo the name entered
HELP: See hint
Variables and adding
Variables and adding
HELP: See program code
Concatenate string
Concatenate string
HELP: See program code
Form using POST
My First Form using POST ( when you run this program you will get an error as the program can not find process.php)
HELP: See program code
Challenge 2
Challenge Create process.asp so that it will echo the name entered.
HELP: See hint