October 2010

What is an SSL Certificate and Do I Need One?

An SSL Certificate is a security measure for websites that gather sensitive information from it’s visitors. SSL stands for Secure Socket Layer. If you are going to gather sensitive information such as Social Security numbers, credit card information, or any other information that your visitors may deem private and want to keep secure, then you

What is an SSL Certificate and Do I Need One? Read More »

Concatenating Strings in PHP and JavaScript

Combining two strings into one string is easy with both PHP and JavaScript. In PHP: $string1 = ‘Hello’; $string2 = ‘World!’; $string3 = $string1.’ ‘.$string2; echo $string3; // prints – Hello World! In JavaScript: string1 = ‘Hello’ string2 = ‘World!’ string3 = string1 + ‘ ‘ + string2 alert(string3) // prints – Hello World! in

Concatenating Strings in PHP and JavaScript Read More »

Scroll to Top