php Material

1234567891011121314151617
Across
  1. 1. Defines reusable code blocks
  2. 4. Sends a value back from a function
  3. 6. Used within a switch statement
  4. 8. Adds a file to another PHP file
  5. 9. Checks another condition if the first is false
  6. 11. Stores multiple values in one variable
  7. 13. Boolean value for truth
  8. 14. Starts with a dollar sign in PHP
  9. 15. Checks many conditions at once
  10. 17. Used to print text to the screen
Down
  1. 1. Boolean value for false
  2. 2. Loop with init, condition, and increment
  3. 3. Adds a file and stops if not found
  4. 5. Represents a variable with no value
  5. 6. Skips one loop iteration
  6. 7. Stops a loop or switch
  7. 9. Executes when the "if" condition is false
  8. 10. Loop used for arrays
  9. 12. Loop that runs while a condition is true
  10. 16. Conditional statement