-
Content Count
99 -
Joined
-
Last visited
Everything posted by gogoily
-
I suggest you not store images into mysql database. Instead, just store the images' path into mysql. Then you can verify the images by their path.
-
Thanks, it really helps a lot
-
Is your IP address a local address or WAN address ?
-
I use both IE7 and FirefoxBecause I'm a PHP programmer, I have to make sure the webpages that I made can display normally in them.
-
Which language do you want ? Here's a whole site codes: http://www.haocodes.com/soft/6584.htm
-
Windows, Linux Or Mac Osx? Which OS do u prefer.
gogoily replied to jlrr94's topic in Operating Systems
I use Windows XP, because it's easier to use and there's lots of softwares running on this platform. -
Useful Laptop Tips (traveling & Mobile Security)
gogoily replied to Saint_Michael's topic in Software
Thank you very muchThese tips are really helpful to me !! -
You have to install DHCP service and you need a DHCP server to assign a dynamic ip to your computer.Sygate can assign dynamic ip.
-
Maybe you should update your MSN or reinstall it.
-
I like WinRAR more, it can release more kinds of compressed files.
-
The Best Media Player Which is your best media player?
gogoily replied to finaldesign's topic in Software
Actually I use TTplayer to play mp3It's a player which can get lyrics automaticlly from internet. -
Well, maybe you should google it :)Or change to other bbs codes
-
Try this codes: function changeFontSize(s){ document.body.style.fontSize = s;}
-
See 16 and 17 line in your codes
-
Review My Site Finally Hosted on Trap17
gogoily replied to reconraiders's topic in Websites and Web Designing
Well, I think it's a good website. -
I'd like to use KasperSkyBut, Thank you, anyway.
-
They're both used.But google doesn't seem to care much about Meta tag, it concerns your page contents more.
-
You can make it without .htaccess Try this code: $ip = $_SERVER['REMOTE_ADDR'];if($ip != YourIP1 && $ip != YourIP2 && $ip != YourIP3) die("You're not welcome here.");
-
Try this one: var count = 0;var o = document.getElementById("char_list").getElementsByTagName("div");for(var i=0;i<o.length;i+){ if(o[i].className == "char_node") count ++;}alert(count);//You get your Div number here;)
-
I've test this code, but it works very well in firefox.... Here's my codes: <marquee><script LANGUAGE='JavaScript'><!--var currentdate = 0;var core = 0;function initArray() {this.length = initArray.arguments.length; for (var i = 0; i < this.length; i++) { this[i] = initArray.arguments[i]; }}link = new initArray("http://darkzone3.net","http://adminarea.invisionplus.net");//I replace your image to local image path in my computerimage = new initArray("desktop.jpg","desktop2.jpg");text = new initArray("Come Chat For Free At Dark Zone","Have an Invision Plus Board Join other who do here");var currentdate = new Date();var core = currentdate.getSeconds() % image.length;var ranlink = link[core];var ranimage = image[core];var rantext = text[core];document.write('<a href=\"' +ranlink+ '\" target=\"_blank\"><img width="50" height="25" src=\"'+ranimage+'\" border="1" alt=\"'+rantext+'\"></a>');//--></SCRIPT></marquee>
-
Javascript Error Error missing ) in parenthetical with JSON statment
gogoily replied to eduard005's topic in Programming
Try this: a=eval("["+responseText+"]");