April 19th, 2009
Revised Version. v3.1
This tutorial will help you set up Apache 2.2.11, PHP 5.2.9, Mysql 5.1.34 and PhpMyAdmin 3. It is tried and tested successfully on a Windows Vista powered System.
Known Issues :
- Sometimes Windows won`t let you edit httpd.conf file. For that you have to disable UAC (User Account Control) from Control Panel -> Users and stop Apache from running in the task bar.
Update : from Yves
I got an Apache crash with PHP 5.2.9 – 2 when executing phpMyAdmin or Wordpress on my dev computer running Win XP SP2…
The solution for me was to install PHP 5.3 (5.3.0RC3-dev)…
If it can help comebody 
Not everyone would spend money online to buy webspace just so that they can test out how their latest application works, Well… Welcome to Vision Master Designs Blog. This tutorial will teach you to set up a developer environment for PHP/MySQL in your computer in no time.
Index :
November 23rd, 2008
This tutorial will help you write text on a background and output as an image using the power of PHP. This is useful during those scenarios when you want to display text using a particular font (which isn`t web friendly i.e the text won`t be displayed with the same font in other’s computer). I have used this technique to display the number of RSS subscribers (top-right). So its pretty simple and very basic.
Click Here for a Demo.

November 18th, 2008
Most of you who have blogs/website might be aware of FeedBurner. Its a service which provides custom RSS Management tools like Analysing Web-Traffic, the number of readers subscribed to you blog etc. I too use Feedburner to help me keep track of my feeds and its readers. Although I love their service, I always found the FeedBurner Chicklet (It displays the number of readers subscribed to your RSS) to be a constraint, it isn`t that flexible i.e We can modify the color of the chicklet but not the chicklet it self. So I decided to create my own Chicklet to help me display the number of readers subscribed to my blog. (Although the number isn`t that big
)
August 7th, 2008
Imagine this, You have a dynamic site powered by PHP/MySQL, its doing ok, you have submitted your website URL to all the known search engines, but still your site doesn’t seem to get much traffic from the search engines…ever wondered why ?
Well firstly, search engines have billions of pages to search. Imagine your link to be something like www.yourdomain.com/index.php?page=aboutme, its tough for any search engine to comprehend any keywords from the link.
But how about www.yourdomain.com/page/about-me.html ? These links are static Links, SEO Friendly Links, “Pretty Links”.
So today we are going to learn how to convert your ugly links into pretty links.
Index
- Step 1 : Enable mod_rewrite in httpd.conf
- Step 2 : Create A Simple PHP file
- Step 3 : .htaccess file
Method 1 – For only a single Variable
Method 2 – For 1 and more than 1 Variable(s)
- Conclusion
Ugly URLs
http://www.visionmasterdesigns.com/demo/seo/test.php?page=page1
http://www.visionmasterdesigns.com/demo/seo/test.php?page=page1&var=foo
Pretty URLs
http://www.visionmasterdesigns.com/demo/seo/page1.html
http://www.visionmasterdesigns.com/demo/seo/page1/foo.html
Click Here to download the script files.
July 28th, 2008

Hello Guys,
I have been busy with college lately, since this is my last year in college, I need to do a very cool project to get some good marks
. Anyways that doesn`t mean I won`t be postin tutorials here
. Want to present your data using AJAX/PHP/MySQL by just coding few lines ? Well here it is. This tutorial teaches you how to present data using AJAX (using jQuery) with some neat effects. We can use PHP/MySQL to store the data and call it. In this tutorial I`ll teach you how to do so with PHP. So lets begin !
You can check the demo HERE.
You can download these files HERE
Index
- Create the HTML page – index.html
-
- Create the PHP File – boo.php
July 25th, 2008
Hello Everyone !
I am really excited ! Its been 18 days since the blog started and the response is amazing. I really hope these tutorials are helpful. Anyways I have seen a lot of people having problem setting up phpmyadmin and Lot more have no idea how to use it. So this tutorial is dedicated to you folks. I`ll teach you the basics of how to play with phpMyAdmin. Frankly I have not seen much tutorials on how to use phpmyadmin, and I don`t know how well you guys will like it.
Anyways
phpMyAdmin 2.11.x Front Page

July 21st, 2008
Its been 2 weeks since visionmasterdesigns.com was started and I am very glad with the response. Lot of people want to explore PHP/MySQL more and I think I`ll give in to that
. So Today lets design a Content Management System using PHP/MySQL.
Index
Don`t get scared seeing the number of pages. This system has 5 files as listed above. Our CMS features add,edit and delete article records.
Introduction to CMS
CMS is an application through which you can add content without the need of uploading any files. You can create,edit,delete articles directly online. These articles are stored in the backend i.e database, in our case MySQL. Everytime user requests for a particular article, the php script retrieves the article and displays it to the user.
I`ll try to keep it as simple as possible.
July 17th, 2008
Hey Everyone,
I have been busy lately, but that ain`t gonna stop me from writing tutorials ! Anyways I had promised a Ruby on Rails tutorial, I am working on that, I am trying to make it as descriptive as possible, but before I post that, a lot of people asked me what is AJAX, how to integrate it with PHP/MySQL etc ? Well guys, This tutorial is dedicated to you all !
Along with answering all your queries, I will be teaching you how to make a simple application in PHP/MySQL using AJAX.
Index
Required : Some basic knowledge in Javascript, HTML.