Hi, I'm a PHP script!

This directory will contain a collection of pages used to begin learning PHP using the Getting Started tutorial on the PHP website.

Which Browser Are You Using?

According to my calculations, you are currently accessing this page from Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com). NOTE: I got a 500 Internal Server Error when I wrote the ``echo`` command as presented in the tutorial. This modified version fixed that.

Connecting to a Database

We are going to want to connect to a database as soon as possible, since the main reason we are looking at PHP in the first place is to be able to store and process data on a web server.

The easiest database for us to learn with is SQLite, and I will use SQLite PHP as the resource to get started.

Here is about a form from Dealing with Forms to get started:

Next step will be connecting to a database. I found An Introduction to PHP and SQLite, which I'll use as a guide.