mikemastah
Members-
Posts
79 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by mikemastah
-
Re: New logo *looks up difference* That's what I meant :)
-
What do you guys think of this new logo for my site? just to clarify, I did not make this logo, my graphics designer did. see it in action here http://www.armybattleground.co.cc/
-
Re: New In-Game Template Sorry for replying on an 'old' topic but your layout isn't really compatible with all resolutions http://files.armybattleground.co.cc/layouterror-darknations.png[/img] <-- is what I'm talking about it gets worse when i maximize my browser: http://files.armybattleground.co.cc/layouterror-darknations2.png[/img]
-
I'm looking for a way to divide my member list into pages 25 users each (Pages: 1 2 3 4 5....) I've been studying mccodes (V1) to see how they do this but I just don't get it. I also did a search on google, I read you need a for-loop but I'm not really good with for-loops either..... If someone could point me in the right direction, that would be awesome.
-
Re: Funny things To Google doodle contest
-
Re: Need help MySQL/PHP Ok what if I only want the data from 'heroes' where should I put the WHERE clause or won't that work? never mind figured it out, works wonderful thanks.
-
Re: Need help MySQL/PHP Whoa that's some SQL, could you explain what it does.. I mean I know what it does... but not all the details and I like details select (sum(t2.power) + t2.bonus) as total, t1.Clan from table_2 as t2 left join table_1 as t1 on t2.Clan = t1.Clan so... (sum(t1.power) is the sum of all the power in t1 right..? + t2.bonus + the bonus from t2 as total, t1.Clan from table_2 as t2 ok.. this goes waaaaay too fast left join table_1 as t1 on t2.Clan = t1.Clan ummm what does this mean..? I'm not really good with SQL. I only know the basic SELECT,WHERE, UPDATE, INSERT stuff
-
I need help pulling stuff from my db I have a table which looks something like this: usernameclanpower PeteHeroes1600 CharlieSomeclan388 SteveHeroes1201 and to make it even harder in another table I've got an attack bonus (I can't combine them) Clanbonus Heroes100 Someclan60 now I need it to say: Clan Nametotal Power Heroes2901 Someclan448 How would I do this?
-
Re: Adobe CS3 Dreamweaver..? never used it. i used Komodo IDE since... well i have used it always.
-
Re: Header.php problam [mccode v2] It's most likely not a css problem but if you could post your code or be more specific we may be able to help more.
-
I have a problem with my tab menubar. in most browsers it looks like this: in some others it looks like this but this is what i want this is more or less the css I use: .menuhold { background-color: #17130f; width: 846px; height: 40px !important; } .menubar ul { list-style: none; padding: 0; margin-top: 6px; margin-bottom: -2px; } .menubar li { float: left; margin: 0 2px; } .menubar li a { background: url('/images/tab2.png') no-repeat; height: 36px; line-height: 2em; float: left; width: 96px; display: block; color: #a39a7b; text-decoration: none; text-align: center; } .menubar li a:hover, .menubar li a.current { color: #17130f; font-weight: bold; background: url('/images/tab.png') no-repeat; height: 36px; width: 96px; } menuhold being the div which holds the menu.... wow that sounds.... anyways can anyone help me?
-
Re: PHP Form issue Yea I know i can use the user's variables (that's what I'm doing right now), i have no idea why i haven't though of those... i guess i worked too long without sleeping :-D thanks for all your solutions but i have my answer.
-
Re: PHP Form issue ooooh ok thanks for explaining
-
Re: PHP.net search bookmark 70 views and still no reply....
-
Re: PHP Form issue Can't edit my post..... what exactly is '$ir'??
-
Re: PHP Form issue Indeed - not impossible, but I doubt many people have enough equipment to reverse engineer an md5/sha1/sha256 hash from scratch in anything less than 40 years. true suggestions on which hash to use?
-
Re: PHP Form issue yea ok. but $_SESSION['id'] changes constantly am I right?
-
Re: PHP Form issue @Vortex that makes it just a little bit harder for them but not impossible. @pog-one and what exactly should I do with $_SESSION?
-
this is my problem, i have a shoutbox which encloses the users username like this <input type="hidden" id="username" value="<?php echo $username; ?>" /> the thing is all users with a little bit of knowledge can change this to whatever they want. I need some way to send the $username variabele along with this form, without the user being able to modify this. Any idea's?
-
someone taught me this some time ago and it's really helpfull. it works like this. 1. click the bookmark 2. enter 'your searchterm' 3. hit enter.... and tadaa you just searched 'your searchterm' on php.net. here's the code, which goes in the bookmark's URL field . javascript:var%20id=document.getSelection();if(!id){void(id=prompt('Enter%20searchterm'))}if(id){document.location='http://php.net/manual-lookup.php?pattern='+escape(id)} works in FF and other Mozilla based browsers. Should also work in IE but I can't test it because my computer runs a Linux OS.
-
Re: text effect ooh found it border-bottom: groove; thanks a lot
-
I'm looking for some way to get this (I have no idea how it's called) effect thingy. the lines under the text is what I'm looking for.
-
Re: mod_rewrite that was just what i was looking for thanks
-
Re: Favicons Set Up I use a PNG favicon but it doesn't show in IE so I'm guessing you'll need a .ico for IE, am I right?
-
Re: mod_rewrite ok i found this: RewriteRule ^user/([^/]+)/([^/]+) /user.php?username=$1&error=$2 [NC] this works but only when then an error has encountered so: '/user/someuser/someerror' works but /user/someuser doesn't. any idea how to solve this?