padlock

I was trying to access PHPmyadmin via my cPanel earlier for one of my web design projects, and came across the following error: #1045 Cannot log in to the MySQL server. I was baffled. It turns out the solution was … Continue reading

javascript101

Last time I discussed how to create your first JavaScript project – assuming you completed that tutorial, then you can read on about assigning variables withing JavaScript. When writing your scripts in any language you will come to a time … Continue reading

string

Earlier today, a web design colleague and I came across a problem with our strpos function in PHP. Take the following situation for example: <?php $string = "abcdefgh"; $find = "abcd"; $strpos = strpos($string, $find); if($strpos) { echo "Found it!"; … Continue reading

actionscript101

Getting started with your first project in flash and ActionScript 3 is relatively easy compared to most scripting languages, in the sense that all you need is your chosen flash authoring software – Flash, Flex, Flash Builder or Catalyst. In … Continue reading

javascript101

Today we are going to look at writing your first script for your web design projects. We will start with a simple script which welcomes you to the page. The aim for this tutorial is mainly to get you used … Continue reading