From 18e98ecab5de1aa01dd70fa53bd636a6034b088c Mon Sep 17 00:00:00 2001 From: Josh Lockhart Date: Tue, 19 Jun 2018 14:22:37 -0400 Subject: [PATCH] Update Database links to use https --- _posts/07-01-01-Databases.md | 6 +++--- _posts/07-02-01-Databases_MySQL.md | 12 ++++++------ _posts/07-03-01-Databases_PDO.md | 6 +++--- _posts/07-04-01-Interacting-via-Code.md | 8 ++++---- _posts/07-05-01-Abstraction-Layers.md | 8 ++++---- 5 files changed, 20 insertions(+), 20 deletions(-) diff --git a/_posts/07-01-01-Databases.md b/_posts/07-01-01-Databases.md index 362e11f..1c63d48 100644 --- a/_posts/07-01-01-Databases.md +++ b/_posts/07-01-01-Databases.md @@ -14,6 +14,6 @@ MySQL and a little bit of MSSQL, or you need to connect to an Oracle database, t same drivers. You'll need to learn a brand new API for each database — and that can get silly. -[mysqli]: http://php.net/mysqli -[pgsql]: http://php.net/pgsql -[mssql]: http://php.net/mssql +[mysqli]: https://secure.php.net/mysqli +[pgsql]: https://secure.php.net/pgsql +[mssql]: https://secure.php.net/mssql diff --git a/_posts/07-02-01-Databases_MySQL.md b/_posts/07-02-01-Databases_MySQL.md index 476ffc9..4bdac6a 100644 --- a/_posts/07-02-01-Databases_MySQL.md +++ b/_posts/07-02-01-Databases_MySQL.md @@ -27,10 +27,10 @@ your applications within your own development schedules so you won't be rushed l * [PHP: Choosing an API for MySQL][mysql_api] * [PDO Tutorial for MySQL Developers][pdo4mysql_devs] -[mysql]: http://php.net/mysql -[mysql_deprecated]: http://php.net/migration55.deprecated -[mysql_removed]: http://php.net/manual/en/migration70.removed-exts-sapis.php -[mysqli]: http://php.net/mysqli -[pdo]: http://php.net/pdo -[mysql_api]: http://php.net/mysqlinfo.api.choosing +[mysql]: https://secure.php.net/mysqli +[mysql_deprecated]: https://secure.php.net/migration55.deprecated +[mysql_removed]: https://secure.php.net/manual/migration70.removed-exts-sapis.php +[mysqli]: https://secure.php.net/mysqli +[pdo]: https://secure.php.net/pdo +[mysql_api]: https://secure.php.net/mysqlinfo.api.choosing [pdo4mysql_devs]: http://wiki.hashphp.org/PDO_Tutorial_for_MySQL_Developers diff --git a/_posts/07-03-01-Databases_PDO.md b/_posts/07-03-01-Databases_PDO.md index da20237..5c819f0 100644 --- a/_posts/07-03-01-Databases_PDO.md +++ b/_posts/07-03-01-Databases_PDO.md @@ -71,7 +71,7 @@ unless of course you are using persistent connections. * [Learn about PDO connections] -[pdo]: http://php.net/pdo +[pdo]: https://secure.php.net/pdo [SQL Injection]: http://wiki.hashphp.org/Validation -[Learn about PDO]: http://php.net/book.pdo -[Learn about PDO connections]: http://php.net/pdo.connections +[Learn about PDO]: https://secure.php.net/book.pdo +[Learn about PDO connections]: https://secure.php.net/pdo.connections diff --git a/_posts/07-04-01-Interacting-via-Code.md b/_posts/07-04-01-Interacting-via-Code.md index 5cae4f0..a5e3b77 100644 --- a/_posts/07-04-01-Interacting-via-Code.md +++ b/_posts/07-04-01-Interacting-via-Code.md @@ -48,7 +48,7 @@ logic in and you have a "View", which is very nearly [MVC] - a common OOP archit {% highlight php %}