• Designs Photo
  • Fantasy Photo
  • Code Photo
  • Silhouette Photo

Creative, Modern, Professional Designs

For the last 6 years, I have been creating innovative websites to capture attention and inspire the mind, balancing user experience with an attractive website interface. By the use of AJAX and CSS, websites become more interactive, and with Search Engine Optimization, they are easily found through Google, Yahoo and Bing.

Designs Photo
Fantasy Photo

Everything you see here is Original Work

Besides the jQuery library and syntax highlighting, this whole website has been created from scratch; No pre built frameworks or content management systems have been used.

This demonstrates dedication, personalization and skill, and is reflected in all of the work I produce.

Programming is a Passion

As you get to know me, you'll start to see that I've tried my hands at just about everything, ranging from the basics to the more advanced and finer points in programming.

That means you'll probably find lots of hints and tips here for many different languages, as well as anything that I find relatively interesting!

HTML Code Photo
Silhouette Photo

Inspiring Designs with Limitless Possibilities

Every website created here is a unique one, with limiting boundaries out of the questions.

Programming is always evolving and so I'm always improving my game to keep up with the changes. You'll be able to see this reflected in the high quality work that I produce.

Information from AnujNair.com »

Posting Comments on AnujNair.com

Posting comments on AnujNair.com is easy; I try and keep things simple. A few things to take note of:

  • All HTML is stripped out of your posts. If you would like to use decorative html, please see below.
  • Please keep language clean. All spam will be deleted.

Here are the options you have for decoration, and the effects that they produce:

  • Bold
    • Wrap the text with the bold tags - format : [b][/b]
    • Example: [b]This is bold text[/b]
    • Outcome: This is bold text
  • Italics :
    • Wrap the text with the italics tags - format : [i][/i]
    • Example: [i]This is italics text[/i]
    • Outcome: This is italics text
  • Links :
    • Post a Link - format : [url={url}][/url]
    • Example: [url=http://google.com]Go to Google![/url]
    • Outcome: Go to Google!
  • Code Tags :
    • Wrap code with the code tags - format : [code={language} [, mode={type}] ][/code]
    • Languages Supported: plain, php, js, html, css, clang
    • Type (optional): (full, inline) : Should the code posted be shown on its own, or inline with text? Examples below)
    • Please note: if this format is not followed correctly, the code tags will not be parsed properly.
    • Outcome:

1. Full code : [code=php][/code]

<?php
	class mysql {
		private $host, $uname, $pword, $db;
		function __constuct($host, $uname, $pword, $db) {
			$this->host = $host;
			$this->uname = $uname;
			$this->$pword = $pword;
			$this->db = $db;
			mysql_connect( ... );
		}
		public function select($what) {
			return "SELECT ".$what". FROM";
		}
		...
	}
?>

 

2. Inline code : [code=php, mode=inline][/code]

... Now notice on line 3, I have private $host, $uname, $pword, $db; - These are private variables, only accessable to the current class ...