admin

admin

How to get latest twitter status using PHP

In this tutorial i will show you how to get latest twitter status using PHP in Here’s the final code that goes into your website project. Copy your API Keys and replace values below where indicated. You may also like…

How to CKEditor In HTML Page using JavaScript

CKEditor is a rich web text editor, which can be used inside your HTML web pages. This HTML text editor allows many of the powerful editing functions found on desktop editors like Microsoft Word to your web. This is featured…

How to create cache dynamic pages using PHP

If your website receives a good amount of traffic every day and your web pages are loading slow, you might want to consider implementing some sort of caching mechanism on your website to speed up page loading time. The simplest…

How to generate short url using PHP and Google API

<html> <body> <form method=”post” action=””> <input type=”text” name=”url_val”> <input type=”submit” name=”submit_url”> </form> </body> </html> PHP Code <?php if(isset($_POST[‘submit_url’])) { $long_url=$_POST[‘url_val’]; $apiKey = ‘Your API Key’; $data = array(‘longUrl’ => $long_Url, ‘key’ => $apiKey); $jsonData = json_encode($data); $curlObj = curl_init(); curl_setopt($curlObj,…

How to get Page Loading Time using PHP

php

Using microtime() PHP function you will know exactly how much time is needed for your PHP code to be executed. Follow the steps below to put the PHP code on your web page. You may also like How to Interval…