Skip to main content
CafeWebmaster

Main navigation

  • Tools
    • MD5 converter
    • SHA1 converter
    • Base64 encode
    • Base64 decode
    • HTML entities encode
    • HTML entities decode
    • Raw url encode
    • Raw url decode
    • UTF8 encode
    • UTF8 decode
    • Unix Time to Human Date converter
    • Remove duplicate lines
    • Sort text lines
    • Backwards - Mirrored Text
    • PiRaTe tExT
    • Your IP Address & Hostname
  • Forums
  • Free PHP Scripts
    • Image watermark with PHP
    • Page generation time with PHP
  • CSS
    • CSS hidden left menu
    • CSS horizontal menu
  • Free Fonts
  • Image Editors
  • Tutorials
    • Check password strength / safety with PHP and Regex
    • Cómo hacer que su sitio web popular!
    • How2 make a website popular
    • How2 secure your website
    • Kennwort Sicherheit mit PHP und Regex Prüfen
    • Page generation time and http-referrers with php
    • Redirect webpages with HTML, PHP, .htaccess, Java+Script, CGI-Perl, ASP.NET and ColdFusion
  • New
User account menu
  • Log in
By n8coder, 22 February, 2010

List of all SwishMax3 effects

  • Read more about List of all SwishMax3 effects
  • Log in to post comments

This is a list of all SwishMax3 effect in 5 categories and sorted by name/filename. For each effect there is a ".sfx" file under "C:\Program Files (x86)\SWiSH Max3\effects\RELATED_CATEGORY\EFFECT_NAME.sfx" under Win7. I will try to create thumbnails / preview for all these effects.

APPEAR INTO POSITION:

Appear into position - 3D Spin in and grow.sfx
Appear into position - 3D Spin in and shrink.sfx
Appear into position - 3D Spin in and stand up.sfx
Appear into position - Alternate grow in curved.sfx
Appear into position - Alternate grow in.sfx
By Anonymous (not verified), 15 February, 2010

The most expensive domain names ever sold (2010)

Youtube.com : $1.650.000.000 : Google bought Youtube and all services for the most expensive price on the web.

Sex.com : $14.000.000 the most expensive domain sale of all the time( the word "sex" is the most searched word online)

Fund.com : $10.000.000 sold in 2008

Porn.com : $10.000.000 in 2007.

Business.com : $8.000.000 in 1999 by an californian advertisement program.

Diamonds.com : $7.500.000

Beer.com : $7.000.000 (why not drinks.com , water.com, alcohol.com etc ?)

AsSeenOnTV.com : $5.100.000 in 2000 and probably the most terrible expensive domain name

  • Read more about The most expensive domain names ever sold (2010)
  • Log in to post comments
By n8coder, 9 February, 2010

How to hide / encrypt CCK Email field with JS against spammer

  • Read more about How to hide / encrypt CCK Email field with JS against spammer
  • Log in to post comments

I got headche while searching for a filter to encrypt/hide email cck field to protect email addresses from spambots. I have installed , deinstalled, activated-deactivated rearranged input filters with both invisimail and spamspan but no luck! Finally I decide to change code in email.module. It works! Go and open "sites/all/modules/email/email.module" and find the line 115 like this:

/**
 * Theme function for 'default' email field formatter.
 */
function theme_email_formatter_default($element) {
By n8coder, 30 August, 2009

Mysql Order / Sort by before Group by

  • Read more about Mysql Order / Sort by before Group by
  • 1 comment
  • Log in to post comments

Every developer knows the horror of mysql sort/order by or select distinct using with group by. Mysql does group by before order by and you get mixed results not what you expected. This is a small solution with less performance problem:

SELECT * FROM 

(
select * from `my_table` order by timestamp desc
) as my_table_tmp

group by catid

order by nid desc

In this example we get latest news in each category. We create a temp table by sorting by timestamp and group by after it. It worked for me.

By amsterdam, 5 July, 2009

Bing vs. Google: a small comparison

  • Read more about Bing vs. Google: a small comparison
  • 1 comment
  • Log in to post comments

Bing vs. Google
This is a small comparison between Google and Microsoft's new search engine Bing. I tried to compare most used features for web search and results quality. Quality of image and video search like common services would be the point of next article.

Google's goal is simplicity and experience. Google's huge stats make available to find relation between different search terms. Bing's goal is Curiosity. People want to see what can a Google-competitor search engine do.

By zoro, 8 June, 2009

Simple Hello World Module for Drupal 6

  • Read more about Simple Hello World Module for Drupal 6
  • 2 comments
  • Log in to post comments

This is a small and simple "Hello World!" module for quickstarters who uses Drupal 6x series. We need just one directory and two files:

  • modules/simple_hello_world/
  • modules/simple_hello_world/simple_hello_world.info
  • modules/simple_hello_world/simple_hello_world.module

modules/simple_hello_world/simple_hello_world.info

; $Id$
name = Simple Hello World
description = Description of Simple Hello World module
core = 6.x

modules/simple_hello_world/simple_hello_world.module


      
    
By ajax2, 4 June, 2009

Check password safety with JavaScript while typing

  • Read more about Check password safety with JavaScript while typing
  • Log in to post comments
By php beginner, 3 June, 2009

Register Globals Emulator for PHP

  • Read more about Register Globals Emulator for PHP
  • 3 comments
  • Log in to post comments

If your webhosting turned register-globals off and you are still using a script/software which requires register-globals on you have a problem. But there is an easy solution: Just put this code at the top of your php script(s). Attention!!! "register_globals=on" means a huge security risk. Do not turn it on unless you know what are you doing!
Technorati Profile

foreach(array($_GET, $_POST, $_COOKIE) as $k=>$v){
	foreach($v as $k2=>$v2){
		$$k2 = $v2;
	}
}
By css3, 3 June, 2009

CSS Text effects for MSIE

  • Read more about CSS Text effects for MSIE
  • Log in to post comments
By n8coder, 29 May, 2009

Find top level domain from international urls with PHP

  • Read more about Find top level domain from international urls with PHP
  • 1 comment
  • Log in to post comments

The format of both "sub.tld.org" and "tld.org.gr" is similar for php. But one of them is top level domain and the other one is a subdomain. explode(".", $tld) is not enaugh to find real tld in this case. This function helps to dedect all known tlds including multi-level regional tlds. It could be useful for fraud dedection or finding duplicate sites under different tlds.


      
    

Pagination

  • First page
  • Previous page
  • Page 1
  • Current page 2
  • Page 3
  • Page 4
  • Page 5
  • Page 6
  • Page 7
  • Page 8
  • Page 9
  • …
  • Next page
  • Last page
CafeWebmaster.com(CW) is a free online community for webdevelopers and beginners. Anybody can share their code, articles, tips, tutorials, code-examples or other webdesign related material on the site. Newbies can submit their questions and reply to existing questions. CW does not guarantee or warrant reliability of code, data and information published on the site. Use the site on your own risk. The site takes no responsibility of direct or indirect loss or any kind of harm to its users. The site also doesn't take responsibility of infected files or source code with any kind of infection or viruses, worms, spywares, malwares, trojan horses. CW reserves the right to edit, move, or delete any of content for any reason.