Тёмный

Admin Panel Setup with PHP, MySQL, HTML and CSS 

Justin Stolpe
Подписаться 4,8 тыс.
Просмотров 46 тыс.
50% 1

Опубликовано:

 

8 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 43   
@samuellawson9466
@samuellawson9466 2 года назад
This was nice.! As a beginner, I understood well
@justinstolpe
@justinstolpe 2 года назад
thanks!
@IcyEspresso
@IcyEspresso 3 года назад
You are absolutely incredible. Thanks for the tutorials!
@justinstolpe
@justinstolpe 3 года назад
Thank you!
@bidutbiswas7475
@bidutbiswas7475 2 года назад
@@justinstolpe sir I need your help
@zachdavies8245
@zachdavies8245 3 года назад
Great work very easy to follow and understand
@justinstolpe
@justinstolpe 3 года назад
thank you!
@ahmadcheikhalzoor6407
@ahmadcheikhalzoor6407 2 года назад
that was interesting , thank you
@martinking4615
@martinking4615 3 года назад
Bless you brother,, thanks so much for the work you put out. Is there anywhere you post more detailed content or some resources that can help me learn to build from start to finish ? i would really appreciate that . I stole the link for your Christian music by the way ....lol
@justinstolpe
@justinstolpe 3 года назад
Thanks! This video is actually part of my playlist for building the site from scratch -> ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-AjqxP67qoFU.html
@sharpestasset9615
@sharpestasset9615 5 лет назад
How to Insert Form Data Into a MySQL Database video would be awesome
@elkhanhamet2561
@elkhanhamet2561 2 года назад
hi Justin, I have a question: in your table you're adding 0 and 1 manually , by hand. Is there a way to add them programmatically, when you're filling out the form?
@joycemalicha7891
@joycemalicha7891 4 года назад
exactly what I wanted. Thanks bro
@callofdutymobile1074
@callofdutymobile1074 2 года назад
Admin panel only using php and mysql it possible? Coding from scratch.
@jc8232
@jc8232 2 года назад
Hello, I see you wrote 'user_info' in one of the $_SESSION however, where is user_info in the database? I see 'user_level', but not 'user_info'. I ask because I need assistance with writing admin privileges for certain users. If you are able to help I would appreciate it
@justinstolpe
@justinstolpe 2 года назад
user info is the whole array of the users info and contains things like user level.
@5gwifi758
@5gwifi758 3 года назад
I would to creat admin penal for food delivery apps
@mattewgraham5889
@mattewgraham5889 4 года назад
Is there a video tutorial where you created this from Scratch
@justinstolpe
@justinstolpe 4 года назад
Yeah, my Easy, Code Is playlist contains tutorials for everything I have coded on easycodeis.com. Here is the playlist ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-AjqxP67qoFU.html
@sdfsadfasga
@sdfsadfasga 3 года назад
at 4:57, you put $_SESSION['user_info']['user_level'] ... is there another way to write this? I keep getting a fatal error, I've looked into it a bit and it seems like the issue is stemming from the PHP version.
@justinstolpe
@justinstolpe 3 года назад
The variable is in the session so that is the way to access it. Not sure what the exact error is though.
@sdfsadfasga
@sdfsadfasga 3 года назад
@@justinstolpe yes, but is there another way to write that specific part?
@justinstolpe
@justinstolpe 3 года назад
@@sdfsadfasga Not sure cause I don't know what the error is
@jamiewithers5451
@jamiewithers5451 3 года назад
Hey, I have a problem it says ' Warning: Illegal string offset 'user_level' what could this mean? ``` define('USER_LEVEL_ADMIN', '1'); function isAdmin() { if (isset($_SESSION['usersUserId']) && $_SESSION['usersUserId'] && USER_LEVEL_ADMIN == $_SESSION['usersUserId']['user_level']) { return true; } else { return false; } } ```
@justinstolpe
@justinstolpe 3 года назад
Your "$_SESSION['usersUserId']['user_level']" is not being set. The only reason for this is probably because you don't have that column in your database.
@LukePryor
@LukePryor 5 лет назад
Login with Twitch API - how to authorize, get the access token (new api), store it, and stick it to the person who logged in
@LukePryor
@LukePryor 5 лет назад
all in PHP btw
@justinstolpe
@justinstolpe 4 года назад
Hey, I made a video for Twitch Login with PHP! Hope it helps ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-n9oO5D-aHCY.html
@plmusic8960
@plmusic8960 3 года назад
currently having a problem with isset if ( !isset($_POST['username'], $_POST['password']) ) { // Could not get the data that should have been sent. exit('Something Went Wrong!'); } this causes my problem and idk how to fix it pls help
@justinstolpe
@justinstolpe 3 года назад
the isset looks fine it can take in multiple vars so not sure what the issue is
@plmusic8960
@plmusic8960 3 года назад
@@justinstolpe cause it works fine until i go to include it and then it doesnt and says that message "Something Went Wrong"
@plmusic8960
@plmusic8960 3 года назад
@@justinstolpe jw what hash this uses to encrypt for the password? please
@justinstolpe
@justinstolpe 3 года назад
@@plmusic8960 using php crypt function www.php.net/manual/en/function.crypt.php
@plmusic8960
@plmusic8960 3 года назад
I mean in phpmyadmin i need to create a user without the register form
@freemanfitness3064
@freemanfitness3064 3 года назад
What is 'user_info'?
@justinstolpe
@justinstolpe 3 года назад
It is an array of the users info from the database and gets stored in the session.
@calvinstraub2224
@calvinstraub2224 3 года назад
Do you have any addons for 2fa and password reset? Appreciated.
@justinstolpe
@justinstolpe 3 года назад
I don't have not implemented any 2fa on any sites yet
@calvinstraub2224
@calvinstraub2224 3 года назад
@@justinstolpe Once I figure it out - i will share what i have found :)
@qindkira
@qindkira 3 года назад
May I get the source code pls? Cause I needed it for school projects next day
@justinstolpe
@justinstolpe 3 года назад
github link is in the description
@chuyendoiso2041
@chuyendoiso2041 3 года назад
the code is wrong bro!
Далее
This Simple Trick Makes Your Website 83% Better Looking
10:57
Они захватят этот мир🗿
00:48
Просмотров 312 тыс.
Пришёл к другу на ночёвку 😂
01:00
Coding Was HARD Until I Learned These 5 Things...
8:34
These CSS PRO Tips & Tricks Will Blow Your Mind!
8:48
Просмотров 283 тыс.
The Most Legendary Programmers Of All Time
11:49
Просмотров 556 тыс.
Create PHP Admin Panel In Just 5 Minutes
13:07
Просмотров 353 тыс.
I found more incredible 3D personal portfolios!!!
19:12
5 JavaScript Concepts You HAVE TO KNOW
9:38
Просмотров 1,4 млн
FASTEST Way To Learn Coding and ACTUALLY Get A Job
10:44
7 Years of Software Engineering Advice in 18 Minutes
18:32