Category Archives: Web Development

Passing Parameters To SWF File with Actionscript 3.0

Recently I had a project to build a Flv player with flash. The video file name and the title were to be passed to the flash file as parameters from the html file. Since I had not done passign parameters … Continue reading

Posted in Web Development | Tagged | 6 Comments

gotoAndPlay() and gotoAndStop() in Flash Actionscript 3.0

gotoAndPlay() and gotoAndStop() are two function that help to control the playhead in flash movieclip. gotoAndPlay() cause the playhead to jump to the specified scene and frame and continue playing , where as gotoAndStop() causes the playhead to jump to … Continue reading

Posted in Web Development | 4 Comments

Name of Country and their 2-Character Alphabetical Country Codes as PHP Key-Value array

Its quiet a tedious job when it comes to developing a dropdown input field in which the user have to select a county, as part of their address, Nationality, etc. Think if you have several of this fields in your … Continue reading

Posted in Web Development | Tagged , | Leave a comment

Compose HTML Mail With Embedded Images

You might often receive advertisement mails or greeting cards with embedded images. How you wondered how this is done? Its not too difficult to achieve this. If you are not familiar with HTML authoring, you must have a html editor … Continue reading

Posted in Tips n Tricks, Web Development | Leave a comment

Generate Random String With PHP

Its quiet common in programming, especially web programming to generate random strings as passwords, keys etc. This is a simple function that you can use to generate random string with length of your choice. You can also specify if the … Continue reading

Posted in Web Development | Tagged | Leave a comment

CSS Margin Border and Padding

Margin, border and padding are parameters that make up the outer boundaries of an HTML element. Margin is the outer most parameter followed by border and then the padding. Margin and padding are invisible and only affects the positioning of … Continue reading

Posted in Web Development | 1 Comment