PHP Operators An operator is something that takes one or more values (or expressions, in programming jargon) and yields another value (so that the construction itself becomes an expression). Unary Operator – requires one operand Binary Operator – requires two operands Ternary Operator – requires three operands Precedence – defines the order of operations, which…
All posts in Web Development

Complete List of Standard HTML5 Tags
= New in HTML5 <!DOCTYPE> is not a tag, but rather a declaration. All HTML documents must start with a <!DOCTYPE> declaration. In HTML5, the declaration is <!DOCTYPE html>. Structural Tags Tag Description <a> Defines a hyperlink or an anchor. <article> Defines self contained content like a blog post or forum post. <aside> Defines some…
Learn HTML5 The Basics
HTML5 is the relatively new (as of 20 Oct 2014) standard for HTML. Let’s go over the basics of what it is, the differences between HTML4 and HTML5 and the reasons behind the new standard. The Reasoning Behind HTML5 First off, a quick refresher of Hypertext Markup Language (HTML) will get us started. HTML is…
Visual Studio Code Remote SSH
I’ve been running into an issue lately with VSCode trying to access a remote server using SSH with authentication keys. I’ll preface this by saying I’m running VSCode on a Windows 10 machine and attempting to SSH to an AWS instance running Linux. This is the error that appears. Notice that it says “Permissions 0644…