Categories
HTML5 Web Design

What is HTML5?

What is HTML5? What is HTML5?…HTML is the latest version of HTML, Hypertext Markup Language. This is the language used to communicate with web browsers to display web documents displayed in pages. The W3c as of December 2012 has  recommended the use of HTML5 for all new and existing websites. HTML5 has a number of new […]

Categories
Development Tools Github

Git Quick Reference Tutorial

What is Git? Git is a distributed version control system. It is free and open source, created by Linus Torvalds. Remember Github is just one various remote options. It is not git – it uses git to store git repos and adds some special sauce on top. It is in the same class as: gitlab, […]

Categories
SQL

MySQL INSERT IF NOT EXISTS: Checking whether a record exists and inserting

MySQL Insert If Not Exists Why doesn’t MySQL Insert If Not exists work????? UPDATE: CHECK AT THE BOTTOM OF POST Bogdan has the answers . First of all, this information relates solely to MySQL and may not apply to MSSQL or PostgreSQL. Have you been trying to insert records into a table based on whether there […]

Categories
Web Development

MySQL Workbench and XAMPP setting up

This is a few pointers to use when setting up MySQL Workbench. MySQL Workbench is a UI for using mySQL. It makes it easy to manage, create and modify your databases. It also gives tools to model a well structured database for any project you may have. MySQL Workbench with XAMPP tutorial Setup Start MySQL, […]

Categories
Web Development

Virtualhost and a XAMPP vhost “Error: Apache shutdown unexpectedly”

This is a problem I have experienced with XAMPP on a windows installation. It arises when editing the httpd-vhost.conf to create a virtualhost. Using Virtualhost is one of the various ways to host multiple websites or services from a single IP address. It comes in use when you are either hosting multiple hosts from 1 […]