topic
Continued / page 3
- tech / 2012
Windows 8 An amazing operating system ↗
After Oct -26th 2012 every windows user has something to cherish which is Windows 8. Windows XP was the stable version and I know people who believe Windows XP is the only operating system that…
- tech / 2012
How to create a Karaoke track using Sound Forge ↗
There are two possible ways to create karaoke track. Using Plugins Manual Cuts Let us see how this is done using Plugins first: Plugins are always cool it takes care many things on its own. When you…
- tech / 2012
Basic lesson in audio editing using sound forge ↗
Sound forge does not need any introduction; we can straight away hit right on the money. File open: Choose your track that you want to edit, when you select the track the levels (monitor) will start…
- tech / 2012
How do I connect apple keyboard in Windows7 ↗
Recently I fell in love with Apple keyboard; there is something unique about Apple ultrathin keyboard which is very good for typing. Apples keyboard is ultra-thin and the keys are evenly spaced that…
- tech / 2012
Super cool image vendors links for smart designs ↗
Whenever you start designing there is only one thing in your mind what images will fit in the design. Images are very vital for a website design. Images can give you super dimension to the website.…
- tech / 2012
Ubuntu 12.04 Features ↗
I am using Ubuntub 12.04 in my desktop. It has lot of functionality. Just to show you in a glimpse see this video,
- tech / 2012
How is linux developed ↗
I had an idea how the Linux is developed but this video will clearly say how it is developed. And how it is managed.
- tech / 2012
Params anywhere ↗
As I was working in one of the Joomla websites, I ran across a sceranio where i have to call a template parameters in a module. My typical programming instincts was to write a Query and fetch the…
- tech / 2012
Response Codes ↗
Every thing in a web is based on request and response. If you want something you are requesting it, where do you do it, it is nothing but your browser. The request is sent to the server. The server…
- tech / 2012
non-www to www redirect ↗
Why you have to do the non-www to www redirect? Some of the users follow the conventional method of typing the URL from www. if your website does not support this then there might be chances that…
- tech / 2012
Add content using CSS ↗
I recently faced a problem in a website, where I have to add a separtor after each li ends. And the speartor should not come for last li I learned this can be achieved through CSS. Let us say out…
- tech / 2012
How to write SQLquery with escapes special characters in a string ↗
The mysql query will not allow the entry which has single qoutes in it. For example if you want to insert the name O’brain from a form to database. then use “mysql\ real\ escape\ string” for…
- tech / 2012
Denny or allow access for IP ranges ↗
We can block a single domain or a complete range such as entire countries. deny from 99.1.0.0/255.255.0.0 To allow Range of Multiple Ip address: allow from 99.88 99.88.77 11.22.33 Place these code in…
- tech / 2012
Automatically CHMOD various file type ↗
Several sites have been harmed due to improper permissions. This interesting hack gives the site a semi-auto healing mechanism. Warning: Your mileage may vary. Ensure CHMOD settings for specified…
- tech / 2012
Encode and decode URL ↗
In PHP you can send values by encoding and decoding the URL by using this encoding and decoding method. ```php echo base64 encode(‘I am encoded PHP’); ``` You will get and output something like this.…
- tech / 2012
How to get image size dynamically ↗
There are many times you wonder why the w3c validation is not going through for you. Please make sure that the img tag has the width and height attributes. What will happen if the image file comes…
- tech / 2012
PHP: Hypertext Preprocessor ↗
PHP is a powerful scripting language, which is best suited for server side web programming. There are plenty of modules in PHP like session, cookies, post, files etc that make its to be a versatile…
- tech / 2012
MySQL: The world’s most popular open source database ↗
MySQL is one of the best open source database. PHP and MySQL goes hand in hand. Without data there is nothing called information. So we all know the importance of data. MySQl carefully handles…
- tech / 2008
CSS: Cascading Style Sheets ↗
The CSS is the styling language. This is mainly for presentation Layer. Data is in MySQL, which is pulled by PHP and it is showed with a style by CSS. There are wide range of options available in…