techfolks php tutorials logo
code to get source code of a website html code of a web page in php html code of any webpage PHP reading the source code of a webpage Sample Programs source code viewer UseFul Functions web page source code

How to Get Source Code of a Web Page

If you are looking for How to Get Source Code of a Web Page or link then just follow below steps. How To Find A Web Page’s Source Code it easy? Source Code of a Web Page By using below PHP function you can easily get the source code of a web page, Source code […]

Google Hangout Widget Google+ Hangout button Hangout button for Website hangout website script Sample Programs

How to Create a Google Hangout Widget for Website

Google+ Hangout button for Website The Hangout button lets you launch a Google+ Hangout directly from your site. When you use the button, you can set up the Hangout in a variety of configurations. For example, you can specify Hangout apps that launch along with the Hangout and setup the Hangout as a regular Hangout […]

PHP Sample Programs

How to Check the Last Day in Month

Check the Last Day in Month $startDate = “20150624”;$endDate = “20150722”;$startDate = strtotime($startDate);$endDate = strtotime($endDate);$dayLength = 60 * 60 * 24;$checkDateRange = ($endDate – $startDate) / $dayLength;$datesStartMonth = date(‘t’, $startDate);if ($checkDateRange > $datesStartMonth) {echo $error = “Date range should be with in one month”;}