What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » Search » Results

Search Results
Subject Author Forum Time
RE: Xbox 360
I never said it wasn't good, I said it wasn't as good as Halo or COD online gameplay, both of which I can pick up at any time and spend quite a long time messing about on different maps with different playlists. Whereas, the GoW online is good, it...
stoshrocketGeneral Chit Chat05-07-2009 at 01:49 PM
RE: Xbox 360
Seconded. I have both GoW games, found them both highly enjoyable. The online playability isn't as good as something like Halo or the COD games, but it's still an overall good game.
stoshrocketGeneral Chit Chat05-06-2009 at 08:51 AM
RE: Searching text files
Very elegant, I never thought of using foreach to work through each file or even stream_to_get_line! The more you use the more you learn!
stoshrocketTech Talk05-04-2009 at 12:35 AM
RE: Searching text files
Not nearly as easy as WDZ's method above, but just for completion and curiosity... [code=php] $needle = 'needle'; //value to search in the text files $dir = './dir/'; //dir to folder containing text files $files = scandir($dir); $arr_count = c...
stoshrocketTech Talk05-03-2009 at 07:27 PM
RE: Searching text files
It'd be quite easy in PHP...
stoshrocketTech Talk05-02-2009 at 07:15 PM
RE: [Spoilers] Heroes S04[REDEMPTION]
I didn't think it was Tracy, there are 3 sisters, Tracy (freezing), Niki (strength) and the last, Barbara, who we know nothing about. Perhaps she has the ability to turn into water? Also, I expected a conclusion, a sum up. I hate heroes for the way ...
stoshrocketGeneral Chit Chat04-29-2009 at 11:44 AM
RE: Xbox 360
I love the new dashboard, I only tested out my free 1-month gold last month (just expired a week ago when I came back to uni) and I had to update the dash. Halo 3 is a good game; very good storyline, and a lot of playability online after completion. ...
stoshrocketGeneral Chit Chat04-23-2009 at 03:11 PM
RE: [Spoilers] Heroes S04[REDEMPTION]
I kinda guessed it would be Faraday centric after the last episode, and the Faraday storyline is one of my favorite. Although, I'd like to see where John and Ben have ended up, their story has only been addressed in one episode which kinda sucks. [...
stoshrocketGeneral Chit Chat04-23-2009 at 03:05 PM
RE: [Spoilers] Heroes S04[REDEMPTION]
Not an amazing episode, but certainly better than last week's 1961. Set it up nicely for a finale imo, although there's been a lot of blase writing this season, atm Lost > Heroes
stoshrocketGeneral Chit Chat04-22-2009 at 07:30 PM
RE: The sims 3
Eh, I liked it breifly as a teen, was quite interesting at first, but within a short time I really lost interest and didn't pick up with the Sims 2 because of the sheer amount of expansion packs and stuff. I might have a look at Sims 3, but the orig...
stoshrocketGeneral Chit Chat04-14-2009 at 04:03 PM
RE: Coding Suggestions?
Ja, I was just bringing it to Eddie's attention that he might have to look into it in the future. :happy:
stoshrocketTech Talk04-13-2009 at 10:33 PM
RE: Coding Suggestions?
The site linked [i]is[/i] displayed differently within IE, due to the difference in the way IE renders padding, resulting in the div's with padding appearing smaller than for example, when loaded in firefox. Not too much of a problem with this part...
stoshrocketTech Talk04-13-2009 at 10:15 PM
RE: Coding Suggestions?
I'd just use divs, but that's becuase i'm scared of tables. :P One container div; - 3 column divs to split page up with defined widths - in the left 3 divs to create the three boxes - in the centre 2 divs for the nav bar (?) and content - 1...
stoshrocketTech Talk04-13-2009 at 12:21 PM
RE: PHP Question
All true, I don't know why I did that, probably down to a combination of tiredness during typing and just inefficient coding... Sorry and thanks for pointing it out though. [size=1][b]Edit[/b]: Post in question edited in response[/size]
stoshrocketTech Talk04-02-2009 at 11:23 PM
RE: PHP Question
Easy fix, you just add the directory before the page name variable. So for your exmaple detailed in your post... [code=php] $page = $_GET['p']; $llama = "./page/"."$page".".hz"; if(file_exists($llama) == TRUE){ include ($llama); } else{ in...
stoshrocketTech Talk04-02-2009 at 12:10 PM
RE: [Spoilers] Heroes S04[REDEMPTION]
That always confuses me as well... But they never actually put the stuff in the order that it was revealed on the show; half the time I think I missed out an episode (I caught up from season 1 starting about 2 months back) because of it D:
stoshrocketGeneral Chit Chat03-31-2009 at 07:33 PM
RE: PHP Question
You're very welcome, I like teh PHP =)
stoshrocketTech Talk03-31-2009 at 05:49 PM
RE: PHP Question
Ah! Very interesting, although it's not 100% secure it would stop a lot of potential malicious users... A simple way to do this would be to get the page variable, then add the extension on and include this, which in code form would be: [code=php] $...
stoshrocketTech Talk03-31-2009 at 05:30 PM
RE: PHP Question
Therefore, it would be safer to use the method entailed in my first post and have variables associated to each page; it's more secure, and better practice.
stoshrocketTech Talk03-31-2009 at 05:07 PM
RE: PHP Question
That's done something using "$_GET" to create check against a variable... In php, you have assign variables to the end of the url and then call them back using the global variable $_GET, so to create an easy include function, you would have your l...
stoshrocketTech Talk03-31-2009 at 03:48 PM
RE: xampp and IIS7 confliction [SOLVED]
... This worked for me aswell! Freaky solution, but a solution nonetheless! Thanks very much JA! Have a cookie [img]http://shoutbox.menthix.net/images/smilies/co okie.gif[/img] :)
stoshrocketTech Talk03-12-2009 at 01:35 PM
xampp and IIS7 confliction [SOLVED]
Up until a few days ago xampp was working perfectly, and i often used it to develop a couple of projects I've got going on, but all of a sudden http://localhost stops taking me to the apache index of my htdocs folder in the xampp directory, and star...
stoshrocketTech Talk03-10-2009 at 05:25 PM
RE: PHP Array Help
YAY! You win! Have a cookie [img]http://shoutbox.menthix.net/images/smilies/co okie.gif[/img] Thankles very much Sam! =)
stoshrocketTech Talk02-19-2009 at 10:51 PM
PHP Array Help
Hey Guys, I've just started up a little project after years of inactivity in the coding world, but hit a bit of a snag. Simplified and to just deal with the root of my problem let's consider the following: I have three files, index.php, one_list.tx...
stoshrocketTech Talk02-19-2009 at 09:07 PM
RE: A-Level Results
Maths: A Physics: A Product Design: B (General Studies: E) Was pretty disappointed with Product Design, I was aiming for the A... I got an E in one of the exams, but nearly full marks in my practicals. I'm going to Nottingham, with the original plan...
stoshrocketGeneral Chit Chat08-19-2008 at 03:47 PM
[Hide Excerpts] Pages: (30): « First « 1 2 [ 3 ] 4 5 6 7 » Last »