Taking our first lesson; Hello World Example, we are going to spice it up a bit and use variables with our PHP file. Let’s start right away by looking at an example then explaining what we did. <html> <head> <title>PHP Tutorial</title> </head> <body> <?php $var = “PHP is cool”; echo “<p>$var</p>”; ?> </body> </html> As… read more
PHP Basic Questions
One great thing about PHP is it is great for people that are new to web programming, it’s very easy to start with and also can get really technical for the veterans. PHP started as Personal Home Page tools, it was started to assist new users with programming. The syntax is very easy to use… read more
Tips & tricks – transfer or move a website to a new domain (IIS)
For whatever reason you may one day want to change your domain name. Of course the biggest issue with this is you are going to loose all your search engine ranking! Thankfully that is no longer the case. Google’s Webmaster Tools now gives you a helping hand in this feat. However in this part of… read more