Forum index / General Chat / Tell HGF Things

Tell HGF Things

47,061 posts · page 918 of 1,569

post #27,511
11 March 2008, 15:02 UTC#27,511
QUOTE(made @ Mar 11 2008, 02:32 PM) [snapback]472976[/snapback]

Liam, Marc, Jess and I.

Pub Quiz, 3 Hulats.

sounds good to marc.

QUOTE(cIRca @ Mar 11 2008, 02:35 PM) [snapback]472979[/snapback]

QUOTE(iammarcmason @ Mar 11 2008, 03:18 PM) [snapback]472971[/snapback]

mmkay; tomorrow is cool with me.

You running vista?

nope.

window blinds works wonders;

External image not preserved — inspect source: http://img354.imageshack.us/img354/457/rgh1205247850qcz4.jpg
post #27,512
11 March 2008, 16:11 UTC#27,512
popping pimples is so gratifying sometimes.
post #27,514
11 March 2008, 16:22 UTC#27,514
marc fails cuz mako is not jap, he is poor, get it right
post #27,515
11 March 2008, 16:26 UTC#27,515
Went to court today to report on a case/generally nose around. It was racially aggrivated assualt, the skinhead defendent stole from the indian guys shop then beat him and called him a paki but denied it. Everyone knew he was guilty but had to sit through fuckloads of evidence.
post #27,516
11 March 2008, 16:27 UTC#27,516
Was the guy a paki though?
post #27,517
11 March 2008, 16:30 UTC#27,517
He was from India.
post #27,518
11 March 2008, 16:32 UTC#27,518
I wish people would stop beating my people
post #27,519
11 March 2008, 16:35 UTC#27,519
I wish the hot sun of your country in your sig would stop beating down on my face.
post #27,520
11 March 2008, 16:52 UTC#27,520
QUOTE(iammarcmason @ Mar 11 2008, 04:02 PM) [snapback]472985[/snapback]

QUOTE(made @ Mar 11 2008, 02:32 PM) [snapback]472976[/snapback]

Liam, Marc, Jess and I.

Pub Quiz, 3 Hulats.

sounds good to marc.

QUOTE(cIRca @ Mar 11 2008, 02:35 PM) [snapback]472979[/snapback]

QUOTE(iammarcmason @ Mar 11 2008, 03:18 PM) [snapback]472971[/snapback]

mmkay; tomorrow is cool with me.

You running vista?

nope.

window blinds works wonders;

External image not preserved — inspect source: http://img354.imageshack.us/img354/457/rgh1205247850qcz4.jpg


You can have styles without all that windowblinds shit, search for "uxtheme patcher" it patches a DLL file in windows to enable you to use custom visual styles without any additional programs, therefore more memory for Marc. :-P
post #27,521
11 March 2008, 16:58 UTC#27,521
believe it or not I've found that using window blinds frees more memory. usually I have around 400 MB taken up by stuff, using WB I have 330MB taken up. also I like the fact that it took me all of 60 seconds to install crack reboot and use....
post #27,522
11 March 2008, 17:03 UTC#27,522
Well its upto you man but I used to use WB and then I installed the uxtheme patch and found it a hell of a lot better and uses next to nothing for memory.

I say give it a try, but like I said, if your happy with WB then so be it. lol :-)
post #27,523
11 March 2008, 17:07 UTC#27,523
yeah im pretty comfortable with it tbh. might give ux a go in the future or something.
post #27,524
11 March 2008, 17:13 UTC#27,524
Premiere and Photoshop CS3 are ballin.
post #27,525
11 March 2008, 17:20 UTC#27,525
I have Photoshop CS3 and it is teh awesomness, do you know if Premier CS3 requires a "SSE2 instruction set" or whatever its called, like the other versions?
post #27,526
11 March 2008, 17:22 UTC#27,526
Would that be something that hinders the installation? Because the version I got was all fine, just updating it now. :)
post #27,527
11 March 2008, 17:34 UTC#27,527
QUOTE(Fuzzy Mannerz @ Mar 7 2008, 12:05 AM) [snapback]471862[/snapback]

QUOTE(mono @ Mar 6 2008, 11:17 PM) [snapback]471857[/snapback]

QUOTE(Fuzzy Mannerz @ Mar 6 2008, 10:05 PM) [snapback]471837[/snapback]

I gotta turn the server on and I'll let you know cos I have a webpage on there that does just what your after and I'll send you the code your needing. lol :-)

EDIT:
I'll be back in about 5 with the info, bloody servers going all weird on me. lol

sick dude, cheers.


Right I got the code, heres what you need to do....

1. Change the PHP Include code you already have to this:
CODE

<?php
$page = $_GET['page'];

if (! file_exists("$page.php"))
{
include("YOUR-FIRST-PAGE-THAT-WILL-BE-DISPLAYED.php");
}
else
{
include("$page.php");
}
?>


2. All links that you want to open in that space will need to be used like so....
CODE
index.php?page=PAGENAME

"PAGENAME" is the name of the .php page that you want to open in the space where the "YOUR-FIRST-PAGE-THAT-WILL-BE-DISPLAYED.php" is by default.

So for example:

I have the following files that will be linked seperatly to open in the center of my page:
about.php and contact.php

I will make a link on the nav that will look like: "About Me" it will link to "index.php?page=about"
There is also contact.php that I want to open in that space and that will link to "index.php?page=contact"

they will bring up "contact.php" and "about.php" instead of my default page, which in my case is "welcome.php"

EDIT: Forgot to mention if the page is in another directory it would be like so.. "index.php?page=DIRECTORY/PAGENAME" (with no .php at the end just like the others)

Im presuming this is the first page therefore "index.php" but if its something else just change the "index" to the name of the page you currently have.

Let me know how you get on and feel free to ask for any help.

Hope this helps. Image file not present in the recovered backup

cheers dude, but the links aren't working.

http://naturesleftovers.com/TEST/

I must be doing something so obvious wrong :[
post #27,528
11 March 2008, 17:39 UTC#27,528
Where your page is called 'index.php' the links would be "index.php?page=PAGENAME" (PAGENAME would be the name of another .php page that you want linked to)

So where you have "Home" currently linking to "show_news.php?page=about" you probably want it as "index.php?page=show_news" and blog would (as an example) be "index.php?page=blog" and for that example your blog would be on a page named "blog.php"


EDIT @ Tom:
Yeah unless your processor has the "SSE2 instruction set" it doesn't let you install it, I just wondered if you knew anything about it cos all the previous versions I've tried say that on install cos my CPU is pretty ancient you see. lol
Just dont want to download it and find it having been a waste of time.
post #27,529
11 March 2008, 19:50 UTC#27,529
cheers man, appreciate it!
post #27,530
11 March 2008, 20:05 UTC#27,530
Someone up LOST!
post #27,532
11 March 2008, 21:06 UTC#27,532
QUOTE(made @ Mar 11 2008, 08:05 PM) [snapback]473046[/snapback]

Someone up LOST!

want me to bring them to the pub tomorrow? what time we meeting up n shit?
post #27,533
11 March 2008, 21:40 UTC#27,533
Might be interviewing Pritchard and Dainton in the next couple of weeks. Probability is pretty good.
post #27,534
11 March 2008, 21:42 UTC#27,534
trying to work up a meetup with rico roman next week. me, geaslin, and mr. brown would be heading up there.
post #27,535
11 March 2008, 21:53 UTC#27,535
Hooray for 13-14 hour road trips
post #27,536
11 March 2008, 21:56 UTC#27,536
Wanna pick up your ol' school chum Al up?

2 extra angles plus Nicks camera back.
post #27,537
11 March 2008, 22:05 UTC#27,537
QUOTE(Fuzzy Mannerz @ Mar 11 2008, 06:39 PM) [snapback]473035[/snapback]

my CPU is pretty ancient you see. lol


Mate upgrade, it's the best thing I ever did.

I'm getting a socket 775 Core2Quad over easter because Core2Duo is soo in the past. :P
post #27,538
11 March 2008, 22:11 UTC#27,538
QUOTE(Rob764 @ Mar 11 2008, 09:40 PM) [snapback]473060[/snapback]

Might be interviewing Pritchard and Dainton in the next couple of weeks. Probability is pretty good.

howcomez?
post #27,539
11 March 2008, 22:29 UTC#27,539
I R PLAYING WOW. lol im so cool.
post #27,540
11 March 2008, 22:33 UTC#27,540
QUOTE(iammarcmason @ Mar 12 2008, 12:11 AM) [snapback]473069[/snapback]

QUOTE(Rob764 @ Mar 11 2008, 09:40 PM) [snapback]473060[/snapback]

Might be interviewing Pritchard and Dainton in the next couple of weeks. Probability is pretty good.

howcomez?

I gots connections.