Bottled Beer At The Walkers Inn
- Home
- Bottled Beer
Bottled Beer
Rated one of the best pubs for food and beer in the Lower Mainland of British Columbia, Canada, the Walkers Inn has become known as the meeting place in Squamish for locals and tourists alike. With high ceilings and post and beam construction, the Walkers Inn offers a unique venue to show off the Stawamus Chief rockclimbing face, and the rest of the fantastic local natural scenery.

Black Sheep Ale
- 5.4% alc./vol.

Brewdog Hazy Jane
- 4.3% alc./vol.

Bulmers Cider
- 5.26% alc./vol.

John Smith
- 3.9% alc./vol.

WKD
- 4.6% alc./vol.
PHP MYSQLi example of viewing data
This section of avaible beers, we has users database with email and password. It uses an HTML form with inputs to retrieve the user login credentials.
When the user submits their login details, then the PHP code will receive the posted data. It compares the entered data against the user database.
If match found, then it sets the user login session. In this authentication code, it preserves the user id in a PHP session. The existence of this session will state user authentication status.
After authentication, the PHP $_SESSION super global variable will contain the user id. That is, the $_SESSION[“user_id”] is set to manage the logged-in session. It will remain until log out or quit from the browser. While logout, we unset all the session variables using PHP unset() function.