Can you also explain that after creating this webpage and sql table how do I actually install this in my existing webpage with the help of connecting it woth a button
you can use laravel pagination ( laravel.com/docs/9.x/pagination ) which is very easy and practicle. otherwise, you should create page links with yourself and read a specific number of rows from the database based on the page number. I may do I video on pagination in php but I don't know when.
Anyone have issues with the edit button? I've checked, double checked and triple checked everything and it still displays "Not Found The requested URL was not found on this server." Everything else works.
Can you please make a video on how to run php code with database connection in visual Studio code. I tried a lot from more than 2 weeks but didn't solve it.
Parse error: syntax error, unexpected variable "$result1" in C:\xampp\htdocs\2\index.php on line 52 I get an error like this. What must i do ? Thanks for easy understandable video
why is my connection to phpmyadmin occur some fatal error like this " Fatal error: Uncaught mysqli_sql_exception: Access denied for user 'root'@'localhost' (using password: NO) in D:\xp\htdocs\mystore\index.php:33 Stack trace: #0 D:\xp\htdocs\mystore\index.php(33): mysqli->__construct('localhost', 'root', Object(SensitiveParameterValue), 'mystore') #1 {main} thrown in D:\xp\htdocs\mystore\index.php on line 33 "
Straight to the point, very helpful - thank you!
Direct, precise, and easy to understand. Thanks for this tutorial!
Actually
This was by far the easiest solutions ive found for showing a table using php. Thank you so much!
This was immensely helpful for a project I am working on as a beginner, thank you very much!
awesome teacher of programming.
THANKYOUUUU SIRRR PRINDAPAN YOU ARE THE BEST
nos fereres les tunisiens vous etes toujour a la hauteur
thank you and greetings from Slovakia
The code is working perfectly thanks for the tutorial man ❤😄
The best Detail and Easy to follow tutorial. Thanks
very quick yet very beneficial, thumbs up for you
Never thought I would be learning web dev from Zlatan Ibrahimovic
Thank you very much! it was very helpful!
Thank you bro, very helpful for my school project
ur a life saver
thank you so much, this was so helpful and easy to follow along !
Very nice and clear instruction. Well done and thank you.
Very useful and well explained, thanks a lot!
honesty you're amazing
clear instructions 👍
Perfect tutorial man!
This is so useful and awesome.
Thank you so much. I subscribed also :)
Thank you so much.🎉🎉🎉
More power to your elbow.
Thank you for this video, this is very helpful 😊
Thank you very much. This was very helpful!
merci à tous cette video va beaucoup m'aider sur tout au niveau de l'id
big big big big big thanks
Thanks bro very helpful and very refined code
Amazing video tutorial.
Can you also explain that after creating this webpage and sql table how do I actually install this in my existing webpage with the help of connecting it woth a button
Thank u soo much ı works well
Thanks so much
Thank You Sir!
clear 👍
If i have a big list how can i sort it and class it for example by id 1,2,3,4.... like a ranking
you can use laravel pagination ( laravel.com/docs/9.x/pagination ) which is very easy and practicle. otherwise, you should create page links with yourself and read a specific number of rows from the database based on the page number. I may do I video on pagination in php but I don't know when.
Just add ORDER BY statement in the SQL query
Thnks a lot.Can u provide updates and delete code.plz
Thank you so much you just saved my life 😂❤
Anyone have issues with the edit button? I've checked, double checked and triple checked everything and it still displays "Not Found
The requested URL was not found on this server." Everything else works.
How to fetch(display) an audio file(url) from database in php table?
Can you please make a video on how to run php code with database connection in visual Studio code. I tried a lot from more than 2 weeks but didn't solve it.
Can you show how to make the update and delete for a row? please
+2
Parse error: syntax error, unexpected variable "$result1" in C:\xampp\htdocs\2\index.php on line 52
I get an error like this. What must i do ? Thanks for easy understandable video
you problably wrote the variable name wrong
you sound arabic hh thanks
ya m3alem ken hkit b tounsi khir
why is my connection to phpmyadmin occur some fatal error like this
"
Fatal error: Uncaught mysqli_sql_exception: Access denied for user 'root'@'localhost' (using password: NO) in D:\xp\htdocs\mystore\index.php:33 Stack trace: #0 D:\xp\htdocs\mystore\index.php(33): mysqli->__construct('localhost', 'root', Object(SensitiveParameterValue), 'mystore') #1 {main} thrown in D:\xp\htdocs\mystore\index.php on line 33
"
That's what I got:
"connect_error) { die("Connection failed: " . $connection->connect_error); } $sql = "SELECT * FROM employees"; $result = $connection->query($sql); if (!$result) { die("Invalid query: " . $connection->error); } while($row = $result->fetch_assoc()) { echo ""; } ?>
ID First name Last name Email Phone Address Action
" . $row["id"] . " " . $row["first_name"] . " " . $row["last_name"] . " " . $row["email"] . " " . $row["phone"] . " " . $row["address"] . " "
What's going on here? Started Xampp and created the database as you did, but something is not working.