Author Archives: Muhammad Faridul Islam

Cross Browser Issues: CSS Hacks, Understanding Compatibility

One of the greatest problems with CSS, or Cascading Style Sheets, is the issue of cross browser compatibility. What may look great in Mozilla browsers looks terrible in Internet Explorer, and may totally break in Netscape. The biggest mistake a web designer or developer using CSS can make is to design for only one browser, […]

Cross-browser

Cross-browser refers to the ability for a website, web application, HTML construct or client-side script to support all the web browsers. The term cross-browser is often confused with multi-browser. Multi-browser means something works with several web browsers. Cross-browser means something works with all versions of all browsers to have existed since the web began. The […]

How to Spy on Computer Use

As a security administrator, auditor or “ethical hacker,” there are times when you will be tasked to monitor a person’s computer usage, including Internet sites visited, files created and/or modified and computer accounts created and/or modified. As a head-of-household, you face many of the same challenges, especially as a parent. Built-in, free and commercial computer […]

Images in if-else

If you want to see different type of image & size in different post then you may use following code- < ?php if ($image = get_post_meta($post->ID, ‘slide’, true)) { ?> <img width=”617″ height=”350″ src=”<?php echo $image; ?>” alt=”Image” /> < ?php } else { ?> < ?php $image = get_post_meta($post->ID, ‘simg’, true) ; ?> <img width=”80″ […]

What is Microsoft Excel and how use it?

Excel is an Electronic Spreadsheet Program Excel is an electronic spreadsheet program that can be used for storing, organizing and manipulating data. When you look at the Excel screen (refer to the example on this page) you see a rectangular table or grid of rows and columns. The horizontal rows are identified by numbers (1,2,3) and the vertical columns […]

Date Functions in Excel 2003

Format options for date functions in Excel Using Date Functions in Excel 2003 There are a number of date functions available in Excel. Depending on your needs, you can use a date function in Excel to return the current date, the current time, or the day of the week. This article covers using the most […]

Date Formulas and Functions in Microsoft Excel

Excel stores dates in sequential serial numbers beginning with January 1st, 1900 as 1.  January 1st, 2006 is 38718 because it’s 38,718 days after January 1st, 1900.  Excel on MAC works the same, except the dates start on January 1st, 1904. Don’t ask me why. Note: There are several different ways to do everything in […]

Named Ranges in Microsoft Excel

Names ranges can be very useful. Some people argue that point, whether using named ranges in VBA or formulas. The most common problem regarding names ranges, everyone agrees, is user ignorance of their existence in the application. Create a Named Range Select a range of cells using the Shift key, Shift+Ctrl, or Ctrl keys (yes, […]

Google apps stupported server list

Following server are listed to google apps – 123-reg.co.uk, 1and1, 4d Web Hosting, BT broadband office, cPanel, dnsExit, DNS Park, Domain Explorer, DomainSite, DreamHost, Dynadot, DynDNS, Enom, EveryDNS.net, Gandi.net, GoDaddy, iCodia, iPowerWeb, ix Web Hosting, Lxlabs, Name.com, Name.net, Namesecure, NearlyFreeSpeech, Netfirms, Network Solutions, No-IP, Registerfly.com, vserver.de, Webhost4Life, WHM, XName, Yahoo!, ZoneEdit

A to Z PHP and MySQL Tutorial

PHP MySQL Connect to a Database Create a Connection to a MySQL Database Before you can access data in a database, you must create a connection to the database. In PHP, this is done with the mysql_connect() function. Syntax mysql_connect(servername,username,password); Parameter Description servername Optional. Specifies the server to connect to. Default value is “localhost:3306” username […]