finally
buy only .com
is
DEAD
I highly doubt Rick is really paying 200k for a .mobi and if he is, he truly has more money than sense. My guess is that there's a lot more to this deal than meets the eye, like a 99% or 100% discount when it comes to sending the cash.
Probably set up by the people behind .mobi to create a buzz around premium names and drive up the prices. Sell one for free and cash in on the rest.
- Rob
I would not go that far. I think .mobi is a very narrow market. Most of the names I have seen registered will never make a penny. Many folks to this day still don't quite understand what makes a domain have value. 2% of my names are other extensions than .com. That 2% represents 0% of my income. So .com is still the place to be.
Basically something like this (an inefficient solution, but if it has to be one line..):What is the line of code to identify a cell phone user? TIA
What is the line of code to identify a cell phone user? TIA
Of course
I'm not going to give the whole list we use, but here is a partial list & an example of how it is done:
Code:## DETECT WAP if ( ereg( "text/vnd.wap.wml",strtolower($HTTP_ACCEPT) ) ){ include"/home/your/wap/index.wml"; exit; } switch (true){ case ereg( "wap" , strtolower ($HTTP_USER_AGENT) ): case ereg( "wml" , strtolower ($HTTP_USER_AGENT) ): case ereg( "phone" , strtolower ($HTTP_USER_AGENT) ): case ereg( "Ericsson" , $HTTP_USER_AGENT ): case ereg( "Sony" , $HTTP_USER_AGENT ): case ereg( "Nokia" , $HTTP_USER_AGENT ): case ereg( "Panasonic" , $HTTP_USER_AGENT ): include"/home/your/wap/index.wml"; exit; }
hope this helps someone
I am...and I'm sure many others who're like myself are as well...:blush:I posted it fifteen months ago here, post #15
http://www.dnforum.com/showthread.php?t=101948
Have fun!
Many folks to this day still don't quite understand what makes a domain have value.
There are many other premium names left to be auctioned. Why flowers? I would think sex.mobi would be THE name to have, among others.
I would not go that far. I think .mobi is a very narrow market. Most of the names I have seen registered will never make a penny. Many folks to this day still don't quite understand what makes a domain have value. 2% of my names are other extensions than .com. That 2% represents 0% of my income. So .com is still the place to be.
## DETECT WAP
if ( ereg( "text/vnd.wap.wml",strtolower($HTTP_ACCEPT) ) ){
include"/home/your/wap/index.wml";
exit;
}
switch (true){
case ereg( "wap" , strtolower ($HTTP_USER_AGENT) ):
case ereg( "wml" , strtolower ($HTTP_USER_AGENT) ):
case ereg( "phone" , strtolower ($HTTP_USER_AGENT) ):
case ereg( "4thpass.com KBrowser" , $HTTP_USER_AGENT ):
case ereg( "ACER" , $HTTP_USER_AGENT ):
case ereg( "Alcatel-BE" , $HTTP_USER_AGENT ):
case ereg( "EPOC" , $HTTP_USER_AGENT ):
case ereg( "Ericsson" , $HTTP_USER_AGENT ):
case ereg( "Go.Web" , $HTTP_USER_AGENT ):
case ereg( "Jingo" , $HTTP_USER_AGENT ):
case ereg( "Klondike" , $HTTP_USER_AGENT ):
case ereg( "m-crawler" , $HTTP_USER_AGENT ):
case ereg( "M3GATE" , $HTTP_USER_AGENT ):
case ereg( "Mitsu" , $HTTP_USER_AGENT ):
case ereg( "MOCOCO" , $HTTP_USER_AGENT ):
case ereg( "MOT" , $HTTP_USER_AGENT ):
case ereg( "Sony" , $HTTP_USER_AGENT ):
case ereg( "Nokia" , $HTTP_USER_AGENT ):
case ereg( "Panasonic" , $HTTP_USER_AGENT ):
case ereg( "Rainbow" , $HTTP_USER_AGENT ):
case ereg( "Rover" , $HTTP_USER_AGENT ):
case ereg( "SAGEM" , $HTTP_USER_AGENT ):
case ereg( "SAMSUNG" , $HTTP_USER_AGENT ):
case ereg( "UP" , $HTTP_USER_AGENT ):
case ereg( "TF Search robot" , $HTTP_USER_AGENT ):
case ereg( "Webmonkey/0.2 NoComment" , $HTTP_USER_AGENT ):
include"/home/your/wap/index.wml";
exit;
}
What the heck, here you guys go.
Code:## DETECT WAP if ( ereg( "text/vnd.wap.wml",strtolower($HTTP_ACCEPT) ) ){ include"/home/your/wap/index.wml"; exit; } switch (true){ case ereg( "wap" , strtolower ($HTTP_USER_AGENT) ): case ereg( "wml" , strtolower ($HTTP_USER_AGENT) ): case ereg( "phone" , strtolower ($HTTP_USER_AGENT) ): case ereg( "4thpass.com KBrowser" , $HTTP_USER_AGENT ): case ereg( "ACER" , $HTTP_USER_AGENT ): case ereg( "Alcatel-BE" , $HTTP_USER_AGENT ): case ereg( "EPOC" , $HTTP_USER_AGENT ): case ereg( "Ericsson" , $HTTP_USER_AGENT ): case ereg( "Go.Web" , $HTTP_USER_AGENT ): case ereg( "Jingo" , $HTTP_USER_AGENT ): case ereg( "Klondike" , $HTTP_USER_AGENT ): case ereg( "m-crawler" , $HTTP_USER_AGENT ): case ereg( "M3GATE" , $HTTP_USER_AGENT ): case ereg( "Mitsu" , $HTTP_USER_AGENT ): case ereg( "MOCOCO" , $HTTP_USER_AGENT ): case ereg( "MOT" , $HTTP_USER_AGENT ): case ereg( "Sony" , $HTTP_USER_AGENT ): case ereg( "Nokia" , $HTTP_USER_AGENT ): case ereg( "Panasonic" , $HTTP_USER_AGENT ): case ereg( "Rainbow" , $HTTP_USER_AGENT ): case ereg( "Rover" , $HTTP_USER_AGENT ): case ereg( "SAGEM" , $HTTP_USER_AGENT ): case ereg( "SAMSUNG" , $HTTP_USER_AGENT ): case ereg( "UP" , $HTTP_USER_AGENT ): case ereg( "TF Search robot" , $HTTP_USER_AGENT ): case ereg( "Webmonkey/0.2 NoComment" , $HTTP_USER_AGENT ): include"/home/your/wap/index.wml"; exit; }