Clearly, this article is for beginners. If you have already built a website, then you know the satisfaction of publishing it and then tweaking it. I am going to make one major assumption that you have figured out what type of content you intend to publish, but need to determine how to get started. This… read more
Blog
PHP Variables
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
How to build your website in a day or less
Yes, you can build your own website in one day or less, but, the more preparation you do ahead of time, the easier it will be. This is because, if you have never built a website before, it takes quite a lot of time to sign up for a lot of the things you’ll need…. read more
Website Construction Tutorial
Creating And Building Your Own Website The purpose of this website is to explain and guide you on how to build a successful website on the internet. Whether you’re a newbie or an expert wanting to construct a website, here you have all the in-depth information you need to know in order to create a… read more
Styling Your HTML Documents
In the previous HTML tutorials you learnt how to mark up your HTML documents using HTML elements. By marking up an HTML document you clarify the structure of the document and prepare for applying CSS to style the visual appearance of the document. In this CSS tutorial I will tell you how to create CSS… read more
Your First HTML Document – The Basics
We will start this HTML tutorial with a look at some small but real fragments of HTML. This is the right place to start if you have little or no previous exposure to HTML. All the HTML and CSS you encounter throughout these tutorials is real working HTML and CSS. So what does HTML look… read more
How to Be a Web Developer – Roadmap for Beginners
Today I am trying to write something for those who want to become a professional web designer or web developer. Since I am not a web developer writer by profession, I apologize in advance for any grammatical errors. What to learn? There is a proverb in Bengali – “Sabjanta Shamser”. It’s a bit of a… read more
Introduction To HTML Forms
HTML forms start to introduce the concept of interaction between the web user and the World Wide Web, in particular the Web server or Host. This tutorial introduces you to HTML forms and all the building blocks (elements) that are available to the web author when designing and creating a form. What Is A Form?… read more