EXEIdeas | October 12th, 2020 | 2 Comments | HTML-CSS-PHP-JavaScript / PHP CodesThe database backup is the most important task for every web developer. Regular database backup prevents the risk to lose the data and it helps to restore the database if any issue occurred. So, Export MySQL Database Tables whenever possible is a good idea. It is always good practice to take a regul...
EXEIdeas | August 28th, 2020 | 2 Comments | HTML-CSS-PHP-JavaScript / PHP CodesExport MySQL Database Tables is a familiar operation for many of us. phpMyAdmin is the go-to choice for a database client in PHP. It provides database administration tools and also allows Exporting MySQL Database Tables. The exported data can be in various formats like SQL, CSV as selected. This tut...
EXEIdeas | August 27th, 2020 | 0 Comments | HTML-CSS-PHP-JavaScript / PHP CodesPHP is widely used for building a wide range of products ranging from web apps to enterprise-level applications. The key to efficient PHP code is to follow proper workflows and automate processes. The result is high quality and bug-free code. In this post, we are going to discuss how can we create a...
EXEIdeas | July 12th, 2020 | 0 Comments | HTML-CSS-PHP-JavaScript / PHP CodesDeprecated tags and attributes are those which have been replaced by other, newer, HTML constructs. They are still included in the HTML draft or recommendation but are clearly marked as deprecated. Once deprecated, tags may well become obsolete. The draft “strongly urges” the nonuse of d...
EXEIdeas | July 8th, 2020 | 0 Comments | HTML-CSS-PHP-JavaScript / PHP CodesA common question is that Is there any way to get both headers and body for a cURL request using PHP? or Can PHP cURL retrieve response headers AND body in a single request? When an HTTP request has been received by a server, typically the response is sent back to the client. In the […]...
EXEIdeas | July 6th, 2020 | 0 Comments | HTML-CSS-PHP-JavaScript / PHP CodesThe domdocument class of Php is a very handy one that can be used for a number of tasks like parsing XML, HTML, and creating XML. It is documented here. In this tutorial, we are going to see how to use this class to parse HTML content. The need to parse HTML happens when are […]...
EXEIdeas | July 5th, 2020 | 4 Comments | HTML-CSS-PHP-JavaScript / PHP CodesHave you ever wanted to save an online website locally? In most browsers you can do this with a couple of clicks but what if you wanted to do this programmatically? Maybe you want to save all the resources, not just the HTML page, but also the external JavaScript and style sheets and control where [...