You Are Viewing Posts Under Category: HTML-CSS-PHP-JavaScript

Get All Resources Like href And src From A WebPage Using PHP

Have 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 [...
How-To-Get-Remote-File-Or-URL-Content,-Size-&-Load-Time-Using-PHP

How To Get Remote File Or URL Content, Size & Load Time Using PHP?

Downloading content at a specific URL is a common practice on the internet, especially due to increased usage of web services and APIs offered by Amazon, Alexa, Digg, etc. PHP’s cURL library, which often comes with default shared hosting configurations, allows web developers to complete this t...
How-To-Get-Remote-File-Size-Or-URL-Size-In-B,-KB,-MB,-GB-Format-Using-PHP

How To Get Remote File Size Or URL Size In B, KB, MB, GB Format Using PHP?

Do you want to know about how to get external hosted remote file size or URL size is fully formated as Bytes, KiloBytes, MegaBytes, GigaBytes format using pure PHP without having any external class then you are on the right place to find out the code? Before processing the code, here we want to firs...
Run-Execute-A-script-Tag-Inserted-On-Page-Using-innerHTML-DOM

Run/Execute A </script> Tag Inserted On Page Using innerHTML DOM

As you know that innerHTML does not run scripts and here our problems start. So what’s the workaround to this problem. You can view the below-linked answer also that I think is related to my question but tried and not working with my problem. In short, our question is that do you want to run [...
How-To-Add-Fullcalendar.io-In-PHP-and-MySql

How To Add Fullcalendar.io In PHP and MySql?

FullCalendar.js plugin is a javascript event calendar and this plugin we can use any web technology and it is easy to use any server-side script like PHP, ASP, JSP, etc. It is a JavaScript-based calendar but after a little tweaking, we can use it with PHP with databases like Mysql also. It is a jque...
How-To-Send-Email-With-SMTP-And-Attachment-Using-phpmailer-in-PHP

How To Send Email With SMTP And Attachment Using phpmailer in PHP?

Sending an email is a very common activity in web applications and websites. For example, sending an email when a user wants to contact you from your website, a new user joins your network, sending a newsletter, sending greeting mail, or sending an invoice, etc. We can use the built-in mail() , a fu...
Menu-Bar-Stick-To-Top-After-Scrolling-A-Web-Page-Using-Pure-Vanilla-JavaScript

Menu Bar Stick To Top After Scrolling A Web Page Using Pure Vanilla JavaScript

Have you ever seen one of those fixed (or “sticky’) header bars that disappear when you begin scrolling down the page, then reappear whenever you start to scroll back up? In this exercise, we’ll learn how to build our own using a bit of JavaScript. Sticky navigation (navbar, header navigation)...