Featured Website - Planescape Online
The Planescape Online website has been a labor of love. Since the beginning of my time at Conestoga College, in the Web Design and Development program, I have been working very hard on this personal project.
Preloading Images and Removing Screen Flicker While SWF Loads
Give your website look smoother by preloading images and making SWF content load without distracting flickering.
Web Design and Development Course List
The full course list for the Web Design and Development program at Conestoga College. I will be graduating in January!
Friday, May 13, 2022
Drop all tables, MySQL
Drop all tables, MySQL.
SELECT concat('DROP TABLE IF EXISTS `', table_name, '`;')
FROM information_schema.tables
WHERE table_schema = 'MyDatabaseName';
Copy and paste the result and run ...