HOME and CODE

PHP & MySQL Home
secure.php
nav.php
notes.php
Download Tutorial

DATABASE

Create Database
Drop Database
Re-Create All

TABLE

Create Table
Drop Table
Add Record
Update Record
Delete Record
Search
View all Records

MORE PHP

PHP Console Apps
PHP Web Apps

PHP and MySQL - secure.php

These are not the real credentials. They are just an example.

<!-- secure.php -->

<?php $host = "localhost"; // Host name - this is real $user = "Aardvark"; // User name - this is an example $password = "L3mMming"; // Password - this is an example $database = "foo"; // Database name - this is real ?>