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
This was by far the easiest solutions ive found for showing a table using php. Thank you so much!
Direct, precise, and easy to understand. Thanks for this tutorial!
Actually
This was immensely helpful for a project I am working on as a beginner, thank you very much!
Straight to the point, very helpful - thank you!
awesome teacher of programming.
nos fereres les tunisiens vous etes toujour a la hauteur
THANKYOUUUU SIRRR PRINDAPAN YOU ARE THE BEST
thank you and greetings from Slovakia
The best Detail and Easy to follow tutorial. Thanks
very quick yet very beneficial, thumbs up for you
Thank you bro, very helpful for my school project
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
merci à tous cette video va beaucoup m'aider sur tout au niveau de l'id
The code is working perfectly thanks for the tutorial man ❤😄
Very nice and clear instruction. Well done and thank you.
honesty you're amazing
More power to your elbow.
ur a life saver
Thank you very much! it was very helpful!
Very useful and well explained, thanks a lot!
clear instructions 👍
This is so useful and awesome.
Thank you for this video, this is very helpful 😊
thank you so much, this was so helpful and easy to follow along !
How to fetch(display) an audio file(url) from database in php table?
Perfect tutorial man!
Thanks bro very helpful and very refined code
Thank you so much.🎉🎉🎉
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
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.
big big big big big thanks
Amazing video tutorial.
Thank you very much. This was very helpful!
Thnks a lot.Can u provide updates and delete code.plz
Thank you so much. I subscribed also :)
Thanks so much
Thank you so much you just saved my life 😂❤
Thank You Sir!
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.
Thank u soo much ı works well
clear 👍
ya m3alem ken hkit b tounsi khir
Can you show how to make the update and delete for a row? please
+2
you sound arabic hh thanks
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
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.