From a9d862d182cef219cca334f2becae61e93bc1ff3 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Tue, 16 Apr 2019 16:55:37 -0400 Subject: [PATCH] Update PHP.md --- day1/instructor_notes/PHP.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/day1/instructor_notes/PHP.md b/day1/instructor_notes/PHP.md index b0ae624..43a3633 100644 --- a/day1/instructor_notes/PHP.md +++ b/day1/instructor_notes/PHP.md @@ -384,6 +384,6 @@ function greet($name) { echo "Hello $name"; } -writeMsg("Matt"); // call the function +greet("Matt"); // call the function ?> ```