February 13, 2016 9:36 am
Published by Gerard Millares
Right before the unveiling of Hack, Facebook developers Julien Verlaguet and Alok Menghrajani wrote on the company’s engineering blog. Their words were “Every PHP programmer is aware of the day to day tasks that can be tricky or cumbersome.” So...
Read More
February 12, 2016 5:43 am
Published by Gerard Millares
A year and a half ago Google was turning heads with its Google Go Programming language. While they kept the world distracted, another internet giant quietly stepped into the realm of computer programming too. Their language is called Hack, and...
Read More
February 5, 2016 2:38 pm
Published by Prasannika
Created by Danish-Canadian programmer Rasmus Lerdorf in 1994, PHP is a popular server-side scripting language that’s commonly used for web development. If you’re new the world of PHP, you may encounter messages embedded into the code. Known as “comments,” they...
Read More
January 21, 2016 5:27 pm
Published by Prasannika
Looking to learn a new programming language? If you have a passion for coding, you should consider JavaScript. Originally launched back in 1995 by Netscape, it’s a dynamic, multipurpose language that’s employed by the majority of websites. Just check out...
Read More
December 11, 2015 5:43 pm
Published by Prasannika
Not Including Alt Text for Images When uploading and using images on your website, be sure to include the alt text attribute. This is an all-too-common mistake made by web developers. HTML 4.01 made the alt text attribute a requirement,...
Read More
December 4, 2015 6:41 pm
Published by Prasannika
#1) Java Originally developed nearly 25 years ago (yes, it’s that old), Java is among the most widely used and recognized programming languages in the world. From television and Blu-Ray players to Android smartphones and desktop computers, it’s used virtually...
Read More
November 30, 2015 8:01 am
Published by Gerard Millares
Understanding URLLIB in Python Web Programming Here we are going to learn about the urllib (stands for url library) in Python. ‘urllib’ is a very important Python internet module, often used in Python networking / Internet Programming. Whenever you have...
Read More
November 28, 2015 7:52 am
Published by Gerard Millares
In this tutorial we will learn about Limit, update and delete. LIMIT To understand the concept of Limit we make the following changes to the read_data_from_database() function as follows: def read_data_from_database(): sql = “SELECT * FROM example LIMIT 2” for...
Read More
November 27, 2015 4:23 pm
Published by Prasannika
Created by Rasmus Lerdorf in 1994, PHP is a server-side scripting language and general-purpose programming language that’s used primary in web development. According to Netcraft, it’s used on more than 244 million websites spread across 2.1 million unique IP addresses,...
Read More
November 27, 2015 7:31 am
Published by Gerard Millares
Welcome to the tutorial on Reading Data from SQLite. Reading data from the database is important in order to access and verify the details that have been stored in it already. We will be continuing with the same code that...
Read More