Skip to content

Latest commit

 

History

History
1163 lines (823 loc) · 30.3 KB

php.md

File metadata and controls

1163 lines (823 loc) · 30.3 KB

PHP

"Quote"

-Anonymous



Overview

This guide is for php.

  1. A knowledge base of all fundamentals

  2. Reference points for best tips and practices

  3. etc


The material I've found is a mixture of:



Quick tips & tricks

  • Make sure php code is between <?php ?> tags. If the entire file is php, you can omit the closing tag.

  • Semicolons(;) are very important in php, don't forget them.

  • echo() and print are almost identical, but echo has no return value and print has a return value of 1. echo can take multiple arguments but print can take only 1.

  • Useful output constructs for debugging include:

    1. echo(outputs strings, numbers, html, etc)
    2. print_r()(output single values or arrays)
    3. var_dump()(returns info such as data type and length)
  • more coming...




Fundamentals

White space does not matter in php. To write PHP code, you must enter it between an open and closing tag. There are a few formats that are accepted, but the most reliable is <?php CODE_HERE; ?>. Other opening and closing tag formats are not 100% guaranteed to work since the server would have to be configured to accept those formats, but <?php?> is understood and rendered on any server expecting php.


Starting a PHP file

<?php
echo "Hello Planet";
?>

/* These are also acceptable, but less reliable. Depends on server configuration.
<? ?>
<?= ?>
<% %>
*/

finish this...



Embedding PHP in HTML

<?php

$title = "Hello World of PHP";

// don't need the semicolon if it's followed by a closing php tag, but it's a good habit.
<h1><?php echo $title; ?></h1>

?>

finish this...



Working with Variables

Variables are for storing data. In PHP, we declare a variable by prepending the variable name with a dollar sign, e.g. $variableName. The convention is to use lowerCamelCase, but there are many different ways to declare a variable; however, you can't start a variable name with a number and you should avoid putting dashes in the name so it doesn't get mistaken for subtraction. Variables are also case-sensitive.

<?php

$string = "I am a variable"; // String
$number = 1234567890; // Number / Integer
$alsoNumber = 3.141592654; // Floating point number

?>


Superglobals

Superglobal is a term used to describe a super global variable, which is a variable in PHP that is predefined and always accessible, regardless of the scope. For instance, we use the $_POST superglobal when we want to acess data sent via the POST method (such as forms).



Constants

Constants are variables who's value never changes. Constants do not begin with a $ sign like regular variables, and it's recommended to name a constant with uppercase letters. You can create a constant using the define() function, which takes 2-3 arguments.


  1. identifier: set the name of your variable.
  2. value: set the value of your variable.
  3. case-insensitive: Determines if the name is case-insensitive, default is false *(Optional)*.

<?php

// define("BIRTH_DATE", 1996, false);
define("BIRTH_DATE", 1996);
echo BIRTH_DATE; // Outputs 1996

?>

As of PHP 5.3, it's now possible to use the const keyword to define constants, and instead of it only being able to hold scalar data (booleam, integer, floar and string), as of PHP 5.6 it's now possible to create a constant array.

<?php

// const COUNT_DRACULA = array(1, 2, 3, 'ah', 'ah', 'ah');
const COUNT_DRACULA = [1, 2, 3, 'ah', 'aahh', 'aaahhh'];
echo COUNT_DRACULA[3]; // Outputs 'ah'

?>

finish this...



Working with Strings


Concatenation & Interpolation

You can concatenate data with the dot. operator. In other languages, you use the + operator, but that doesn't have the same effect in php. For instance, the strings '5' + '5' is 10, but in JavaScript it would be 55.

<?php

$name = "Kaz";
$age = 26;


echo $name . " is " . $age; // Outputs Kaz is 26
echo 5 + 5; // Outputs 10
echo '5' + '5'; // Outputs 10

?>

You can interpolate data with double quotes and curly braces(optional).

<?php

$name = "Kaz";
$age = 26;

echo "$name is {$age}"; // Outputs Kaz is 26

?>


Working with Numbers Finish this...

Numbers...Add notes on math, same basic arithmetic operations (+, -, *, /)

<?php

echo 56 + 45; // 101
echo "<br>"; // Line breaks, otherwise results appear on same line
echo 56 - 45; // 11
echo "<br>";
echo 56 * 45; // 2520
echo "<br>";
echo 56 / 45; 1.244444444
echo "<br>";
echo 45 + 34 * 45 /421 - 45; 3.6342042755344
echo "<br>";

$number1 = 12;
$number2 = 24;
echo $number1 * $number2;

?>


Useful String Methods

Here are some useful and good to know string methods.

<?php
$firstName = 'Nanette';
$lastName = 'Manoir';
$fullName = 'nanette manoir';

// Get string length
strlen($firstName);

// Find the position of the first occurence of a substring in a string
strpos($firstName, 'ne'); // 2

// Find the position of the last occurence of a substring in a string
strrpos($firstName, 't'); // 5

// Reverse a string
strrev($firstName);

// Convert to uppercase
strtoupper($lastName);

// Convert to lowercase
strtolower($lastName);

// Capitalize each word, does not lower case other letters
ucwords($fullName);

// Replace part of a string
$fullName = str_replace('nanette manoir', 'angela anaconda', $fullName);

// Return portion of a string (substring)
$firstName = substr($fullName, 0, 6); // from 0 to 6, inclusive
$lastName = substr($fullName, 6); // everything after 6, excluding 6

// Starts with? Returns Boolean value
str_starts_with($fullName, 'a');

// Ends with? Returns Boolean value
str_ends_with($fullName, 'a');

// Prevents html injections
htmlspecialchars('<script>some string here</script>');

This example was copied and slightly modified from traversy media's 3 hour php crash course



Arrays

Arrays are for storing different types of data in one variable. To access the data you need to use the element's array index.

<?php

$olderArray = array(1, "2", "<h1>3</h1>");
$moreCommonArray = [1, "2", "<h1>3</h1>"];

echo $moreCommonArray[0];

?>


Associative Arrays

If you have big arrays and don't care about the order, but need to access data without remembering the element's index, you can use associative arrays. Associative arrays keep your data in key-value pairs, where the index is replaced with a key. This is the same concept as JavaScript objects, Ruby hashes and Python dictionnaries.

<?php

$array = ["nickname" => "Kaz", "age" => 26];
echo $array["nickname"];

?>


Usefule Array methods

Here are some useful array methods that are good to know.

<?php
$classes = ['warrior', 'mage', 'archer', 'priest'];

// Get length of array.
count($classes);
sizeof($classes);

// Search array (returns Boolean)
in_array('mage', $classes);

// Add to end of array
$classes[] = 'necromancer';
array_push($classes, 'berserk');

// Add to beginning of array
array_unshift($classes, 'assassin');

// Remove from end of array
array_pop($classes);

// Remove from beginning of an array
array_shift($classes);

// split array into chunks of 2(depending on argument)
$chunkedClasses = array_chunk($classes, 2);



// New arrays for new method examples
$heroes = ['Hawkgirl', 'Black Canary'];
$superHeroes = ['Superman', 'Batman'];
$weaknesses = ['kryptonite', 'trauma', 'temper', 'sore throat'];

// Merges arrays together into one bigger array.
$justiceLeague = array_merge($heroes, $superHeroes);
$justiceLeague = [...$superHeroes, ...$heroes];

// Combines arrays into one associative array, with the first array as keys and the 2nd as values
$heroWeaknesses = array_combine($justiceLeague, $weaknesses);

// Get array keys
$keys = array_keys($heroWeaknesses);

// Get array values
$values = array_values($heroWeaknesses);

// Get an array of numbers by range, including start and end agument.
$numbers = range(5, 20);

// Mapping to a new array. Do something to each item then put it in the new array.
$newNumbers = array_map(fn($num) => $num * 2, $numbers);

// Mapping to a new array but filtering as well.
$filteredNumbers = array_filter($numbers, function($number) {
    return $number >= 10;
});

// Reducing an array (reducing to one value, so summing the values into one)
$sum = array_reduce($numbers, fn($accumulator, $currentValue) => $accumulator + $currentValue);


Conditionals

Conditional statements determine what code will be run based on a condition. A common example of this is the if statement, which will only execute code if the code evaluates to true.


If statement

<?php

if (5 > 4) {
    // This code will run since the condition is true
    echo "5 is greater than 4";
} elseif (4 < 5) {
    // This is true but ignored since a condition was already met.
    echo "4 is less than 5";
} else {
    // This will only run of no conditions are true
    echo "Numbers confuse me";
};

?>

If ternary statement

You can also use ternary expressions if the condition statement fits in one line.

<?php
$tired = true;

$awake = $tired ? false : true; // If tired, $awake is true, else $awake is false.
var_dump($awake); // bool(false)

The reason we use var_dump and not echo, is because false boolean values don't output anything. If it's true, it outputs a 1. If it's false, then you'll need to use var_dump to see it's false.

Will add notes on the nullish coalescing operator



Switch Statements

Switch statements are similar to if statements but depending on the situation, it might make more sense to use a switch statement instead of multiple if statements, for readability. They're especially useful when you want to test 1 statement on multiple values.

When writing a switch statement, it's important to remember to use the break keyword after each condition, otherwise if it matches a condition, it will execute every line of code below it, within the switch statement.

<?php

$meaningOfLife = 42;

switch ($meaningOfLife) {
    case 34:
        // This will not execute because 34 != 42
        echo "The meaning of life is 34? Is that right?";
        break;
    case 42:
        // This will execute since 42 == 42
        echo "The meaning of life, the universe and everything.";
        break;
    case 69:
        // This will not execute because 69 != 42
        echo "The meaning of life is certainly not 69...";
        break;
};

?>


Comparison and Logical Operators

Comparison and logical operators are very useful when using conditional statements.


Comparison Operators

<?php
/*
== is equal to
=== is identical to
!= is not equal to
*/
?>


Logical Operators

<?php
/*
&& and
|| or
*/
?>


Loops

Loops allow us to repeat code until a certain condition is met.


While Loop

The while loop will continue while a certain condition is true. To avoid infinite loops, typically you'd create a counter variable and increment it for each loop. What's important is that your condition will eventually become false.

<?php
$lemonade = 5;
while ($lemonade <= 10) {
    echo "Give me some lemonade for {$lemonade} cents please.<br>";
    // $lemonade = $lemonade + 1;
    // $lemonade += 1;
    $lemonade ++;
};

/* Outputs:
Give me some lemonade for 5 cents please.
Give me some lemonade for 6 cents please.
Give me some lemonade for 7 cents please.
Give me some lemonade for 8 cents please.
Give me some lemonade for 9 cents please.
Give me some lemonade for 10 cents please.
*/

?>


For Loop

while loops and for loops essentially do the same thing, but difference lies in the arguments passed. In a while loop you're checking for a condition, but in a for loop you must provide 3 important things.

  1. A counter variable
  2. A condition for that counter
  3. How much to increment or decrement the counter

So for loops are useful when you know how many times you'd like to iterate(loop).

<?php

// I counted down here as an example, but I could've incremented.
echo "Count down commencing...<br>";
for ($counter = 10; $counter >= 0; $counter--) {
    echo "{$counter}<br>";
};
echo "! This message will now self-destruct !";

/* Outputs:
Count down commencing...
10
9
8
7
6
5
4
3
2
1
0
! This message will now self-destruct !
*/

?>


Foreach Loop

The foreach loop only works with arrays. It goes through the entire array and stops without us having to specify a condition for the loop to end.

<?php

$animeList = ["Death Note", "One Piece", "Naruto", "Cowboy Bebop"];

foreach ($animeList as $anime) {
    echo $anime . "<br>";
};
/* Outputs:
Death Note
One Piece
Naruto
Cowboy Bebop
*/

?>


Functions

Functions are a great way to reuse parts of your code instead of having to retype it over and over again. We create a function that has one job, and then we call that function whenever we need it. Functions may have parameters and may return a value, but these aren't necessary.

<?php

// Let's say it takes 4 apples to make one drink.
function appleJuicer($amount) {
    echo "Thanks for the {$amount} apples<br>";
    $glasses = $amount / 4;
    if ($glasses < 1) {
        echo "This isn't enough to make a full glass of juice...<br>";
    } else {
        echo "With this I can make " . ceil($glasses) . " glasses of juice!<br>";
    };
};

appleJuicer(1); // This isn't enough to make a full glass of juice...
appleJuicer(4); // With this I can make 1 glasses of juice!
appleJuicer(8); // With this I can make 2 glasses of juice!


// Example of a function that returns a value
function square($number) {
    return $number * $number;
}

$numberSquared = square(2);
echo $numberSquared; // Outputs 4

$numberSquared = square(4);
echo $numberSquared; // Outputs 16

// Example of a variable function (anonymous function stored in variable) with arrow function syntax
$ageMachine = fn($age) => $age + 1;

// If the function doesn't fit on one line, then you must use curly braces and the return keyword
$ageMachine2 = fn($age) => {
    return $age + 1;
}

// Same as the above arrow functions
function $ageMachine3($age) {
    return $age + 1;
}
$
?>

Notice how you can omit the return keyword in an arrow function if it fits on one line!



Built-in Functions


Math

Some examples of built-in math functions.

echo pow(2, 10); // 2 to the power of 10 = 1024
echo rand(1, 100); // random number between 1-100
echo sqrt(100); // Square root of 100 = 10
echo floor(99.5); // 99.5 rounded down = 99
echo ceil(99.5); // 99.5 rounded up = 100
echo round(99.5); // 99.5 rounded = 100
echo round(99.4); // 99.4 rounded = 99

String

Some examples of built-in String functions.

echo strlen("This calculates a string's lenth"); // strlen = String length
echo strtoupper("This return's a string uppercased."); // strtoupper = String to upper
ec

Array

Some examples of built-in Array functions. The print_r is a great way to print an array(or single value) with it's indexes or keys(if it's an associative array).

$array = [1, 2, 3, 6, 5, 4, 7, 10, 8, 9];

print_r($array); // Outputs: Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 6 [4] => 5 [5] => 4 [6] => 7 ...)
echo max($array); // 10
echo min($array); // 1
echo sort($array); // Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 [5] => 6 [6] => 7 ...)
in_array(6, $array) // returns true(1) or false(nothing)



Scope

The scope determines where variables can be accessed from. There's global and local scope. In PHP, something declared in the global scope, cannot be accessed within a local scope unless we use the global keyword. A variable inside of the local scope can only be accessed from within its scope.

<?php

$secretIdentity = "Superman";

function unmask () {
    global $secretIdentity; // Allows the variable to be accessed within the local scope
    $secretIdentity = "Clark Kent";
};

echo $secretIdentity . "<br>"; // Outputs "Superman"
unmask();
echo $secretIdentity; // Outputs "Clark Kent"

?>

Had we not used the global keyword, it would've created a new local scoped variable within the function. Then it would've never updated the global variable, so it would've echoed "Superman" twice.



Working with JSON

When working with API's, you'll often need to convert data to and from the JSON format.


Example of converting to JSON

<?php
$friends = [
    [
    'first_name' => 'Mikey',
    'last_name' => 'Robbinson',
    ],
    [
    'first_name' => 'Susan',
    'last_name' => 'Froth',
    ]
];

var_dump(json_encode($friends));

// Outputs:
// string(91) "[{"first_name":"Mikey","last_name":"Robbinson"},{"first_name":"Susan","last_name":"Froth"}]"

Example of converting from JSON

<?php
$friends = '[{"first_name":"Mikey","last_name":"Robbinson"},{"first_name":"Susan","last_name":"Froth"}]';

var_dump(json_decode($friends));

/* Outputs:
array(2) {
  [0]=>
  object(stdClass)#1 (2) {
    ["first_name"]=>
    string(5) "Mikey"
    ["last_name"]=>
    string(9) "Robbinson"
  }
  [1]=>
  object(stdClass)#2 (2) {
    ["first_name"]=>
    string(5) "Susan"
    ["last_name"]=>
    string(5) "Froth"
  }
}
*/


Forms

Forms are a crucial aspect of web development. They allow you to gather user data and analyze it for later use. In PHP, we have the super global variable $_POST. The superglobal $_POST is an associative array of variables containing data sent via an HTTP POST request, such as data from an HTML form.


Checking for Form Submission

Sometimes we want to verify if the form was submitted, before trying to retrieve information from it. The first file code snippet is the form HTML code, the other is the file where the form is posting to.

<html>
    <body>
        <!-- form-name-here.php has to be a valid file path -->
        <form action="form-name-here.php" method="POST">
            <label for="first-name">First Name:</label>
            <input name="first-name" type="text" placeholder="Ex: John" />
            <br />
            <label for="last-name">Last Name:</label>
            <input name="last-name" type="text" placeholder="Ex: Smith" />
            <br />
            <label for="password">Password:</label>
            <input name="password" type="password" />
            <br />
            <button name="submit" type="submit">Submit</button>
        </form>
    </body>
</html>

In the form-name-here.php file:

    <?php
    // isset() is a function to see if a variable is 'set', meaning declared and not NULL
    // We're using it here to see if any form data has been submitted.
    if (isset($_POST['submit'])) {
        echo "Success";
    }

    ?>


Extracting Data From a Form

In almost all cases, when a user fills out the form and presses submit, you want to retrieve that data and store it in a database. In PHP, we use the $_POST superglobal to retrieve that data and an RDBMS (such as sql server) to store and fetch the data.

<html>
    <body>
        <form action="form.php" method="POST">
            <label for="username">Username</label>
            <input name="username" type="text" placeholder="Ex: Kaz123" />
            <br />
            <label for="password">Password</label>
            <input name="password" type="password" />
            <br />
            <button name="submit" type="submit">Submit</button>
        </form>
    </body>
</html>

In the form.php file:

    <?php
        if (isset($_POST['submit'])); {

            $username = $_POST['username']; // Value is what username you entered in the form
            $password = $_POST['password']; // Value is what password you entered in form
            echo "Your username is: " . $username . "<br>";
            echo "Your super secret password is " . $password;
        }
    ?>


Validating Form Values

Often we'll want to perform client side validation to avoid submitted invalid data to our database, which can cause bugs. A simple way of doing this is making sure certain form fields give feedback if invalid info is entered, for instance if the password complexity is too low and the password needs to be longer.

    <?php
        // If the username is too short, a message will appear above the form in this case.
        if (isset($_POST['submit'])) {
            $username = $_POST['username'];
            $password = $_POST['password'];

            if (strlen($username) < 3) {
                echo "Sorry, your username needs to be longer than 3    characters.";
            }
        }
    ?>
<!-- You can use the current file name to post to the same page. -->
<form action="this_file.php" method="POST">
    <label for="username">Username</label>
    <input name="username" type="text" placeholder="Ex: Kaz123" />
    <br />
    <label for="password">Password</label>
    <input name="password" type="password" />
    <br />
    <button name="submit" type="submit">Submit</button>
</form>


OOP & Classes

This section is being actively worked on still, as is the whole document but this part is very incomplete.


From PHP5 onwards, you can write object oriented programming(OOP) in PHP. Classes are like blueprints, they allow you to define the parameters for an object, then you can create as many instances of that class. I will rewreite this and clarify it properly in the future.


A few quick things to note before reading the code snippet below:

  1. There's a screenshot of the output of the code below the code snippet.
  2. $this refers to the instance of the object when used. It points at itself.
  3. This code snippet is long and includes class inheritance, consider copying it and playing with it for practice.

The code snippet below was taken from Brad Traversy's php-crash repo and changed. He had a great example of what a class is and what class inheritance is. I did the same concept but with animals.

<?php
class Animal {
    // There are 3 Access Modifiers in PHP: public, private and protected.
    // public - can be accessed from anywhere
    // private - can only be accessed from inside the class
    // protected - can only be accessed from inside the class and by inheriting classes

    // Properties: Variables that belong to a class.
    public $age = 0;
    private $alive = true; // Cannot be directly accessed outside of the class, but accessible through methods.

    // The Constructor: Called whenever a new instance of the class is created.
    // It's parameters determine what properties can be set when creating a new instance of the class.
    // When you create a new instance, you can pass in arguments(thanks to the constructor) which will become properties.
    public function __construct($name, $gender, $species, $fur = true) {
        // Here, we grab the arguments provided and set them as the value for the correlated properties.
        $this->name = $name;
        $this->gender = $gender;
        $this->species = $species;
        $this->fur = $fur; // We've provided a default value of true in case no argument for fur is passed.
    }

    // Methods: Functions that belong to a class.
    function shave() {
        if ($this->fur) {
            echo "fur shaved";
        } else {
            echo "No fur to shave!";
        }
    }

    // This method is the only way the animal can "die" since the alive property is private.
    // Otherwise, you could do $animalClassInstance->alive = false;
    function died() {
        $this->alive = false;
    }

    // Conditionally returns a message based on if the animal is alive.
    function isAlive() {
        echo "<br>";
        if($this->alive) {
            echo 'alive!';
        } else {
            echo 'dead...';
        }
    }

    // Destructor: Called when an object is destroyed or at the end of the script.
    // It's good for cleanup, ex: closing the connection to a database.
    function __destruct() {
        echo "<br>";
        echo "KABOOM"; // But maybe do something more important here...
    }
}

// Instantiate a new animal;
$animal = new Animal('Pancake', 'female', 'cat', true);

// Access class instance properties
echo $animal->name . "<br>"; // Outputs "Pancake"
echo $animal->species . "<br>"; // Outputs "cat"

// Add a value to a property
$animal->age = 1;
$animal->fur = false;
echo $animal->fur; // false doesn't return anything, so we'll use the shave method for some output!

// Using methods
$animal->shave(); // Outputs "No fur to shave!"
$animal->died(); // Changes alive property to false
$animal->isAlive(); // Outputs "dead..."

// For better readability, just adding some spaces.
echo "<br>";
echo "<br>";
echo strtoupper("Rat class below");
echo "<br>";
echo "<br>";


/* ----------- Inheritence ---------- */
// Inheritence is the ability to create a new class from an existing class.

class Rat extends Animal {
    private $realName = "Master Splinter";
    public $alive;

    public function __construct($name, $gender, $breed, $fur = true, $species = 'rat') {
    parent::__construct($name, $gender, $species, $fur); // Copies from parent
    $this->breed = $breed; // Property doesn't exist in parent class, so we assign parameters to properties manually.
    }

    // Method only available to the Rat class, not the animal class
    function squeak() {
        echo "SQUEAK!";
    }

    // Redefine the parent class method to change the output.
    function isAlive() {
        echo "<br>";
        if($this->alive) {
            echo "Well it's breathing... so it aint dead!";
        } else {
            echo "I'm sorry, there's no heartbeat...";
        }
    }
}

// Instantiate instances of the Rat class, notice how the species defaults to rat.
$rat1 = new Rat('Chester', 'male', 'berkshire');
$rat2 = new Rat('Goliath', 'male', 'dumbo', false);

// Accessing the Rat instances' species property
echo $rat1->species . "<br>";

// Calling the Rat class only squeak method
$rat1->squeak();
echo "<br>";

// Calling a parent class methods works the same way
$rat2->shave();
$rat2->died();

// Using a redefined method that was originally defined by the parent class
$rat2->isAlive();

// Accessing the "alive" property that's private in the parent class but public here.
$rat2->alive = true; // We bring it back to life here!
$rat2->isAlive();

output from code snippet above

Screenshot of output for code snippet above


Notice in the screenshot above how the destructor method runs even for the child class. Both the parent and child class instances run their destructor methods at the end.



Cookies

Cookies are for storing insensitive data in the client browser, it helps identify returning users. You can determine what data gets saved in these cookies and then user them again in the future.

// Set cookies, providing the key, the value and the duration before the cookie expires
setcookie('firstName', 'Lee', time() + 86400); // time() is current timestamp, plus 86 400 secs(one day)
setcookie('lastName', 'Keebum', time() + 86400 * 30); // One day times 30(month)

// Accessing cookie, not necessary to use isset()
if(isset($_COOKIES['firstName'])) {
    echo $_COOKIES['firstName']; // Do something
}

// Clearing/unsetting the cookie. Clears it, sets it and then expires
setcookie('firstName', '', time() - 86400);

You can find the cookies in your browser if you inspected and head to the Application tab Chrome browser local host cookies


Notice above that only the lastName cookie shows up, this is because we clear the firstName cookie at the end of our script. If we were to comment that line out, then both cookies would appear. But without explicitly unsetting the cookie, the cookie will remain in the browser, even if you comment the line out that sets the cookie in the first place.



Sessions

Sessions are a way to store information as variables to be used across multiple pages. Unlike cookies, sessions are stored on the server, making it more secure. You could also use cookies across multiple pages as well if you wanted.

To be continued...

session_start();

if(isset($_SESSION['username'])) {
    echo "<h1>Welcome {$_SESSION['username']}</h1>";
} else {
    echo "<h1>Welcome guest23121</h1>";
};


Databases

Databases are crucial for persisting(saving) information. There are many different databases available, but for this guide we will be focusing on RDBMS databases, which stands for Relational DataBase Management Systems. An RDBMS is software that allows you to manipulate data from your database. It uses tables with fields (columns) and records (rows) to store data. To retrieve and alter that data, we use a database querying language called SQL. But sql is quite a big topic of its own, so I'd suggest you read my sql guide to learn more on that.

SQL is used to query a database and retrieve data. One of the best(free) database options we have when working with php is phpMyAdmin.

Image of phpMyAdmin

You can download and read more about it here




Resources



Tools

Documentation

For a more complete guide with more examples, visit: