RUVIDEO
Поделитесь видео 🙏

AH Computing Science - Web Development - Lesson 6: PHP sessions

📁 Обучение 👁️ 0 📅 01.12.2023

For the Scottish Advanced Higher Computing course.
Explanation of PHP sessions.

A PHP session is a way of storing information to be used across multiple pages of a single website.
Information can be stored in session variables (which are stored on the server) which can be accessed across different pages.
Session variables are stored on the server until the browser tab is closed or there are 30 minutes of inactivity (this is configurable).v

Example 1 - Logging in to a secure site
A user types their username and password into a form and clicks the submit button.
Their login details are checked against those stored in the database.
If the user logs in successfully a session is started.
Their user id is stored in a session variable.
Every page they visit includes the session_start() command. This means that, for the duration of their visit to the site, every page has access to their user id (and therefore the rest of their details).
When the user leaves the site the session on the server is destroyed. Alternatively, if the user clicks the log out button, the session_destroy() command is executed.

Example 2 – Shopping as a guest
A user is browsing a shopping site as a guest (i.e. they are not logged in).
Every page they visit includes the session_start() command.
Their basket is stored in a session variable.
This means that, for the duration of their visit to the site, every page has access to their basket. If they update their basket, the session variable is updated.
When the user leaves the site the session on the server is destroyed.

Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «AH Computing Science - Web Development - Lesson 6: PHP sessions», вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.

Честно говоря, Rutube сегодня — это кладезь уникальных находок, которые часто теряются в общем шуме. Мы же вытаскиваем на поверхность самое интересное. Будь то динамичный экшн, глубокий разбор темы от любимого автора или просто уютное видео для настроения — всё это доступно здесь бесплатно и без лишних формальностей. Никаких «заполните анкету, чтобы продолжить». Только вы, ваш экран и качественный поток.

Если вас зацепило это видео, не забудьте взглянуть на похожие материалы в блоке справа. Мы откалибровали наши алгоритмы так, чтобы они подбирали контент не просто «по тегам», а по настроению и смыслу. Ведь в конечном итоге, онлайн-кинотеатр — это не склад файлов, а место, где каждый вечер можно найти свою историю. Приятного вам отдыха на RUVIDEO!

Видео взято из открытых источников Rutube. Если вы правообладатель, обратитесь к первоисточнику.