Search found 789 matches

by EcazS
Tue Apr 03, 2012 7:35 pm
Forum: General Chat
Topic: HTML5 is awesome
Replies: 17
Views: 2575

Re: HTML5 is awesome

bowersbros wrote:The new method takes it back to grey?


Oops, sorry. I never noticed that you switched browser tab... Maybe I should start wearing my glasses :roll:
by EcazS
Mon Apr 02, 2012 10:17 pm
Forum: General Chat
Topic: HTML5 is awesome
Replies: 17
Views: 2575

Re: HTML5 is awesome

I noticed how the placeholders didn't go back to grey text but stayed black.. hmm..

Pretty cool thing, it'll probably be another year or two before I actually start using it though...
by EcazS
Mon Mar 26, 2012 9:15 am
Forum: General Chat
Topic: Kaltxì, ma frapo. I'm alive!
Replies: 8
Views: 1859

Re: Kaltxì, ma frapo. I'm alive!

I have no idea. I haven't been on for awhile... All I noticed was a bunch of spam that was later removed.

Also, Temor is a moderator (don't trust them Swedes)... :roll:
by EcazS
Wed Mar 14, 2012 7:49 am
Forum: General Chat
Topic: Ubuntu - Grub Problems
Replies: 5
Views: 1113

Re: Ubuntu - Grub Problems

I hate a problem like this but I "uninstalled" Ubuntu and then it worked....
by EcazS
Wed Feb 29, 2012 7:36 pm
Forum: General Chat
Topic: PHP Security update
Replies: 6
Views: 1190

Re: PHP Security update

jacek wrote:A GPU is just a CPU with many many cores and dedicated to graphics processing.


Exactly
by EcazS
Wed Feb 29, 2012 7:46 am
Forum: General Chat
Topic: PHP Security update
Replies: 6
Views: 1190

Re: PHP Security update

Enough time and enough CPU power AND enough GPU power.... :roll:
by EcazS
Thu Feb 16, 2012 9:10 pm
Forum: General Chat
Topic: Zyma
Replies: 4
Views: 920

Re: Zyma

It must be too cheap to be true
by EcazS
Thu Feb 16, 2012 5:12 pm
Forum: General Chat
Topic: Zyma
Replies: 4
Views: 920

Zyma

This almost looks to good to be true, http://www.zyma.com/ what do you guys think?
I mean...it's so cheap!
by EcazS
Thu Feb 16, 2012 4:16 pm
Forum: General Chat
Topic: Forum
Replies: 4
Views: 968

Re: Forum

phpBB
by EcazS
Wed Feb 15, 2012 8:32 pm
Forum: General Chat
Topic: CSS
Replies: 2
Views: 823

Re: CSS

No. That's good, setting the width is sometimes better than only using floats.
E.g. if you set the width of the header to 1000px then the navigation won't end up on the side of the header but on a new "row" by itself, could be done with floats but I tend to use less floats.
by EcazS
Fri Feb 10, 2012 2:36 pm
Forum: General Chat
Topic: Forum
Replies: 4
Views: 968

Re: Forum

phpBB, you place it somewhere using an FTP client.
by EcazS
Wed Feb 08, 2012 8:53 am
Forum: General Chat
Topic: REALLY starting with web development.
Replies: 3
Views: 791

Re: REALLY starting with web development.

The problem with oDesk is that I only seem to find really big projects or wordpress plugin development or something with ASP in it...
by EcazS
Tue Feb 07, 2012 10:16 pm
Forum: General Chat
Topic: REALLY starting with web development.
Replies: 3
Views: 791

REALLY starting with web development.

Any tips for how to really start with web development/design as a business? Please don't recommend me oDesk or Elance or any other site like that because to be honest, I think they're shit. They are all packed with "hiring" jobs and if it actually is a freelance work then they refuse to pa...
by EcazS
Tue Feb 07, 2012 8:22 pm
Forum: General Chat
Topic: I want to Make My own Online RPG Game.
Replies: 6
Views: 1371

Re: I want to Make My own Online RPG Game.

Is payment involved?
by EcazS
Mon Feb 06, 2012 1:16 am
Forum: PHP
Topic: Replace values in array.
Replies: 13
Views: 1162

Re: Replace values in array.

What the heck?!
I tried something like that before but the items were repeating itself twice; I must have messed it up
by EcazS
Sat Feb 04, 2012 10:49 pm
Forum: PHP
Topic: Replace values in array.
Replies: 13
Views: 1162

Re: Replace values in array.

Alright so the above works, however, I'd like to change it a bit; I don't know if this is possible at all but I would like to check what page it is and echo out something else. [syntax=php] foreach ($navigation as $nav) { if(this_page = $nav["name"]) { echo "<li class=\"active\&q...
by EcazS
Sat Feb 04, 2012 12:20 pm
Forum: PHP
Topic: Replace values in array.
Replies: 13
Views: 1162

Re: Replace values in array.

The problem was that I didn't do the string manipulation on every $_GET variable. It's a rather messy solution, [syntax=php] while ($mysql->fetch($row)){ $navigation_items[current(explode(".", $row["page_name"]))] = array( "url" => $row["page_name"], "nam...
by EcazS
Sat Feb 04, 2012 11:27 am
Forum: PHP
Topic: Replace values in array.
Replies: 13
Views: 1162

Re: Replace values in array.

I tried doing strtolower in the while loop,
[syntax=php]$navigation_items[strtolower($row["page_name"])][/syntax]
and also,
[syntax=php]in_array(strtolower($_GET["p"]), $navigation[$_GET["p"]])[/syntax]
but I'm still getting the error :/
by EcazS
Sat Feb 04, 2012 1:36 am
Forum: PHP
Topic: Replace values in array.
Replies: 13
Views: 1162

Re: Replace values in array.

I updated the code a little bit and did like this, [syntax=php] while ($mysql->fetch($row)){ $navigation_items[$row["page_name"]] = array( "url" => $row["page_name"], "name" => current(explode(".", ucwords($row["page_name"]))), "home&q...
by EcazS
Sat Feb 04, 2012 12:46 am
Forum: PHP
Topic: Replace values in array.
Replies: 13
Views: 1162

Re: Replace values in array.

Ye, but if I do it like that then I would still need a way to change that specific value of the array and then outputting it. And that's sort of where I'm stuck. My idea right now is to check what page it is (which I know how to do) and then update the array and then use the foreach to output the ar...
by EcazS
Sat Feb 04, 2012 12:33 am
Forum: PHP
Topic: Replace values in array.
Replies: 13
Views: 1162

Re: Replace values in array.

But it's dynamic so I figured that I'd check the $_GET but I'm still stuck on changing the array value, since I want to echo them out in the right way too.