Cross browser compatible HTML table cellspacing and CSS border-spacing property

As a result of the failure of IE (IE6 and IE7) browsers to implement the border-spacing CSS property for HTML tables. The mere CSS rules below: border-spacing:2px; border-collapse:separate; /* border-spacing will be ignored should border-collapse:collapse;*/ Have no effect of widening the cells distance on IE. To enable border spacing and cells gap, you will not …

Cross browser compatible HTML table cellspacing and CSS border-spacing property Read More »

SQL: Randomly Shuffle Rows or Records – Reorder them in a random order

Easier than it appears. Just create a new table and import all those rows and records random selected and ordered by the RAND() SQL function: CREATE TABLE new_table SELECT * FROM old_table ORDER BY RAND() Of if you have created a table identical to the structure of the old one, use INSERT INTO instead: INSERT …

SQL: Randomly Shuffle Rows or Records – Reorder them in a random order Read More »

phpBB Spam Control — phpBB Anti-Spam Options for Fresh Forum Installations

phpBB is pretty much the best php forum software out there that is free, and comes the first choice of many webmasters. However, after a few weeks of first installation, many complain that spam bots start to overwhelm their forums, flooding with automated spam registrations and spam posts. Unfortunately, that is generally because: phpBB disables …

phpBB Spam Control — phpBB Anti-Spam Options for Fresh Forum Installations Read More »

PHP: Return and Get the Last Letter / Character of a String

To get the last character of a string in PHP, you need a combination of the functions of substr() and strlen(). For example, you need to get the last digit of a date string such as ‘Feb. 3’ or ‘Aug. 14’ to determine whether the trailing of the date will be ‘st’, ‘nd’, ‘rd’ or …

PHP: Return and Get the Last Letter / Character of a String Read More »

Robots.txt Disallow All and Block Search Engine Spiders

You can literally block any visitor including search engines and secure the data or information you have on your website by the help of .htaccess Deny From All. A similar solution is to have a robots.txt, majorly for search engines. To disallow all search engine visits and stop the any spider or crawler, create a …

Robots.txt Disallow All and Block Search Engine Spiders Read More »

Incisive Software Engineering & Programming Quotes and Sayings

” If debugging is the process of removing software bugs, then programming must be the process of putting them in. “ – Edsger Dijkstra ” Rules of Optimization: Rule 1: Don’t do it. Rule 2 (for experts only): Don’t do it yet. “ – Michael A. Jackson ” The best method for accelerating a computer …

Incisive Software Engineering & Programming Quotes and Sayings Read More »

The Best Online Domain Name Availability Checker Tool (AJAX)

As if there’s an offline one to check whether a domain is available or not. 😉 Psychic Whois is it. It’s the best domain availability checking tool I know so far. AJAX powered, it instantly checks whether a domain is available for registration after you have typed the primary part by listing all 6 popular …

The Best Online Domain Name Availability Checker Tool (AJAX) Read More »

The most dangerous thing in your career or business

It’s not the mistakes or failures themselves that you should be aware of. Everything is a bless including them which descend upon you for you to grow. Bad attitude rather than bad things is the driving force to your self-destruction. So what is the most dangerous mistake you could make in your career and business. …

The most dangerous thing in your career or business Read More »

HTML Table Size — Control and Change the Size of Table and Table Cells

In HTML 4.01, you can directly change the size of table via HTML properties width and height instead of controlling them by CSS styles. Table Size The overall size of a table is determined by the width and height of it. For example, to set table width as 400 pixels and table height as 150 …

HTML Table Size — Control and Change the Size of Table and Table Cells Read More »

Free Online Skills Test for Freelance Web Developers and Programmers: PHP, MySQL, (X)HTML, CSS, JavaScript and More

There are plenty of freelancing jobs sites and outsourcing interactive platforms between service providers and clients now. Elance is probably the most renowned online freelance jobs brokerage firm. Why? Google tells me. 😉 Elance has the largest bunch of backlinks according to Google via query “link:elance.com”, over 2,400 as of now, the most prominent in …

Free Online Skills Test for Freelance Web Developers and Programmers: PHP, MySQL, (X)HTML, CSS, JavaScript and More Read More »

The Ultimate On-page SEO Checklist — Better SEO, Semantics and Accessibility at The Same Time

Web Content Accessibility Guidelines (WCAG) 2.0 is the Bible of web developers who are responsible for HTML templating and independent content authors who are eager to reach the biggest audience possible. However, if you think that’s just for the sake of that, accessibility, think again. WCAG is way more than just accessibility, it’s also the …

The Ultimate On-page SEO Checklist — Better SEO, Semantics and Accessibility at The Same Time Read More »

Scroll to Top