Or Learn fast, learn cheap
Who knows what it is ?
An improvisation troupe asked me to create a showcase website with information about the troupe and a way of contacting them. Should I use PHP to implement it ?
What is the correct URL resulting from a GET request sent from an HTML form with the following attributes ?
<form action="https://web.com/" method="GET"> <input type="text" name="name" value="John"> <input type="text" name="age" value="42"> <input type="submit" value="Submit"> </form>
https://web.com/?name=John&age=42
https://web.com/?name=John&age=42&submit=Submit
Which of the following is a URL resulting from a GET request ?
https://web.com/
localhost:8000/?name=John&age=42
What does this code do ?
<?php $a = "5 apples"; $b = 3; $result = $a + $b; echo $result; ?>
<?php $x = "10"; $y = "20"; $result = $x + $y; echo $result; ?>
What should you commit ?
vendor
composer.json
composer.lock
This is a way to make link and shortcut in the code
This comment will center everything on the page