In page 63 of the Jump Start PHP Environment ebook there’s a section Git in Action that’s not working for me. I’m doing EVERYTHING STEP BY STEP, exactly how it says in the book.
It all works fine until Creating a “Hello World” page:
- In the
hi_phpenv
folder, create a new folder namephpenv
. You can do this either through your host machine’s file explorer or via the Terminal / Git Bash withmkdir phpenv
. Change into the directory withcd phpenv
.- Make a new file called
index.php
and give it the contents:
<?php echo "Hello World";
- Try visiting http://phpenv.app/ in the browser to make sure it works.
It doesn’t work. http://phpenv.app/ still displays “No input file specified”.
What’s going on? How can I troubleshoot?