web analytics

Tutorial

10 tips to speed up your website? Web page optimization tips

Hello everyone and welcome to this tutorial on “How to speed up your website? Web page optimization tips”. Whenever on internet it is basically desired to have things happening faster, right? But your website is not performing good enough? Well, here are 10 site optimization tips that will boost your website loading speed. Bored with the …

10 tips to speed up your website? Web page optimization tips Read More »

How to download image from URL using PHP? 2 methods explained.

Hello everyone, welcome to this short tutorial on how to download image from URL and save it on your server using PHP. Method 1: $url_to_image = ‘http://oleaass.com/wp-content/uploads/2014/09/PHP.png’;$my_save_dir = ‘images/’;$filename = basename($url_to_image);$complete_save_loc = $my_save_dir . $filename;file_put_contents($complete_save_loc, file_get_contents($url_to_image)); To download image from URL here $url_to_image is the URL of the image you want to download and $my_save_dir is …

How to download image from URL using PHP? 2 methods explained. Read More »

Why and How to use static properties in PHP? OOP in PHP.

A static keyword is very important in object oriented programming. Static methods and properties play a vital role in application design and also in design patterns. So what are static methods and properties? In general, to access any properties or method of a class we first have to initialize an object of that class. Then …

Why and How to use static properties in PHP? OOP in PHP. Read More »

15 Do and Don’t Mobile photography tips and tricks

Hello Everyone. For the last few months after buying my current android phone, I have been shooting a lot of photos and also studying about more better mobile photography works. However the following 15 Do and Don’t Mobile photography tips and tricks will surely help you. These includes what you should DO and DON’T. Things you …

15 Do and Don’t Mobile photography tips and tricks Read More »

How to backup all databases at once in localhost windows WAMP server

Hello everyone, today with another short tutorial on MySQL and my ultimate MySQL GUI interface of choice, SQLYog. Sometimes, like after a clean windows install or HDD issue or virus/malware attack etc. we need to reinstall our WAMP server. In general our MySQL server also get reinstalled with WAMP and we lose all our databases …

How to backup all databases at once in localhost windows WAMP server Read More »

5 tips to speed up your website? These Web page optimization tips will give Sonic Boom

Hello everyone and welcome to this tutorial on “How to speed up your website? Web page optimization tips” PART 02. So, in my last post on website optimization, which is “10 tips to speed up your website? Web page optimization tips – Part 01“, I described 10 ways to speed up your website. If you have …

5 tips to speed up your website? These Web page optimization tips will give Sonic Boom Read More »

10 features your IDE (Integrated Development Environment) should have

Coding involves a lot of thing than just coding. Alright, I agree, people can even code in notepad. But choosing right IDE for your everyday use is far more than important. You can open up a program of 40-50 lines in notepad and edit and save it. But what about a whole project of 100 …

10 features your IDE (Integrated Development Environment) should have Read More »

Sort dependency list or Topological Sorting in PHP

Topological Sorting – Wkipedia In the field of computer science, a topological sort (sometimes abbreviated toposort) or topological ordering of a directed graph is a linear ordering of its vertices such that for every directed edge uv from vertex u to vertex v, u comes before v in the ordering. For instance, the vertices of …

Sort dependency list or Topological Sorting in PHP Read More »

Use Memcache to speed dynamic database driven websites

Memcache Memcached is a general-purpose distributed memory caching system and memcache is the top level application or module that uses memcached service. It is often used to speed up dynamic database-driven websites by caching data and objects in RAM to reduce the number of times an external data source (such as a database or API) …

Use Memcache to speed dynamic database driven websites Read More »

Why I would choose PhpStorm over Adobe Dreamweaver?

Okay, first of all guys, I have been using PHPStorm for the last project I am working on and its really awesome, but the following list awesomeness is obviously incomplete. Read More: 10 features your IDE (Integrated Development Environment) should haveThough Adobe Dreamweaver is also a great IDE for web based development, PHPStorm is beyond the …

Why I would choose PhpStorm over Adobe Dreamweaver? Read More »

RSS
Follow by Email
Scroll to Top