https://github.com/chadnpc/php_sandbox
Work in progress: This will be a small playground to learn PHP
https://github.com/chadnpc/php_sandbox
Last synced: over 1 year ago
JSON representation
Work in progress: This will be a small playground to learn PHP
- Host: GitHub
- URL: https://github.com/chadnpc/php_sandbox
- Owner: chadnpc
- License: mit
- Created: 2023-04-24T12:21:13.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-02T00:51:44.000Z (about 3 years ago)
- Last Synced: 2025-02-10T01:31:39.897Z (over 1 year ago)
- Language: PowerShell
- Homepage:
- Size: 45.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [**🐘 PHP SandBox**](index.php)
A small playground for learnning PHP or just a refresher.
Big thanks to [bradtraversy's course](https://github.com/bradtraversy/php-crash).
## [**PHP**](https://php.net)
A general-purpose scripting language geared toward web development.
* It's an Interpreted server-side language.
* It can be written alongside HTML within PHP tags
* It's often used with relational databases such as MYSQL
* It's a relatively easy language to learn
## **Environment Setup**
Install php and its dependencies:
```PowerShell
& Scripts\WebServerSetup.ps1
```
Start dev server:
```PowerShell
Cd Path/to/PHP_SandBox
php -S localhost:4000
```