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

SQL Select | Tutorial

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

Course Title: Web Development Masterclass
Course Link: http://youaccel.com/admin/cdisplay.php?cid=11

Facebook: https://www.facebook.com/youaccel
Twitter: https://twitter.com/YouAccel
Website: http://youaccel.com

Tutorial Content:

With our data imported into the database, we can start exploring some of the SQL statements we can integrate with MySQLi to perform different tasks.

We will start off with the SELECT Statement. We have worked with this before, in PhpMyAdmin. The SELECT statement will retrieve data from the database.

First create and save a new PHP file in your text editor. We have named it select.php.

Establish a connection to the mywebsite database, as we did in the last lesson.

Next, we need to create our SQL statement.

Here we have set the SQL statement to select the id, firstname, lastname and email columns from the users table.

We then execute the SQL query and put the resulting data into a variable called result.

The following if statements checks to make sure there is at least one row. If there are no rows, it means there is no data relevant to our query. In which case the words "0 results" will be outputted.

If there is at least one row, the function fetch_assoc() will put all the results into an associative array that we can loop through. The while() loop loops through the result set and outputs the data from the columns we specified in the SELECT statement. The output is done through a basic echo statement.

We can see the results by loading this page in our web browser.

Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «SQL Select | Tutorial», вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.

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

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

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