Skip to content

Commit

Permalink
Fix links for db exercise
Browse files Browse the repository at this point in the history
  • Loading branch information
AydinHassan committed Feb 8, 2023
1 parent 440b32f commit 19649ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exercises/database-read/problem/problem.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ Finally, you will be given a random name as the second argument to your program,

This is an exercise introducing databases and PDO. PDO is a powerful abstraction library for dealing with different database vendors in a consistent manner. You can read the PDO manual here:

[http://php.net/manual/en/book.pdo.php]()
[http://php.net/manual/en/book.pdo.php](http://php.net/manual/en/book.pdo.php)

A short introduction can be found here:

[http://www.phptherightway.com/#pdo_extension]()
[http://www.phptherightway.com/#pdo_extension](http://www.phptherightway.com/#pdo_extension)

The most interesting class will be `\PDO`. The first parameter is the DSN string. The second and third are the username and password for the database. They are not needed for this exercise and can be left out.

Expand Down

0 comments on commit 19649ca

Please sign in to comment.