Search found 3607 matches

by JayBird
Tue Nov 18, 2008 5:17 am
Forum: General Discussion
Topic: Spam
Replies: 40
Views: 3190

Re: Spam

Just report an spam usign the report button, and we'll nuke ASAP
by JayBird
Tue Nov 11, 2008 5:36 am
Forum: Coding Critique
Topic: PHP function to convert MySQL NOW() format to ANY format
Replies: 8
Views: 5580

Re: PHP function to convert MySQL NOW() format to ANY format

Why would you do this in PHP and not just grab the date as you needed it directly from MySQL?

Code: Select all

 
SELECT DATE_FORMAT(NOW(), '%W %M %Y')
 
by JayBird
Wed Nov 05, 2008 1:17 pm
Forum: General Discussion
Topic: Windows VS Linux
Replies: 12
Views: 1509

Re: Windows VS Linux

I removed the signature from the OP
by JayBird
Mon Nov 03, 2008 10:50 am
Forum: General Discussion
Topic: How to do this?
Replies: 4
Views: 330

Re: How to do this?

You would need to scrape their website, which i guess would be against their terms and conditions... None of the content may be downloaded, copied, reproduced, transmitted, stored, sold or distributed without the prior written consent of the copyright holder. So this would make it illegal, and hence...
by JayBird
Mon Nov 03, 2008 10:37 am
Forum: General Discussion
Topic: How to do this?
Replies: 4
Views: 330

Re: How to do this?

Do you have permission to get the prices from that site?
by JayBird
Sat Nov 01, 2008 12:16 pm
Forum: General Discussion
Topic: The American Election
Replies: 52
Views: 3380

Re: Political Poll

onion2k wrote:As for a poll, this forum isn't predominantly American, so Obama would be the clear winner ... he is pretty much everywhere other than the USA http://www.iftheworldcouldvote.com/ ... he'd certainly get my vote if I were in America.
Thats interesting, not seen that before
by JayBird
Sat Nov 01, 2008 12:13 pm
Forum: General Discussion
Topic: The American Election
Replies: 52
Views: 3380

Re: The American Election

I think we can let this run as long as it stays sensible. First sign of anyone getting unruly and it gets closed.
by JayBird
Fri Oct 31, 2008 2:20 pm
Forum: General Discussion
Topic: $_SESSION[] is retarted
Replies: 4
Views: 540

Re: $_SESSION[] is retarted

panic! wrote:It's 'retarded' not 'retarted'.

http://en.wikipedia.org/wiki/Irony
:mrgreen: :banghead: :crazy:
by JayBird
Thu Oct 30, 2008 6:18 am
Forum: Code Snippets
Topic: Making Keyword Rich, Human Readable URLs
Replies: 8
Views: 42412

Re: Making Keyword Rich, Human Readable URLs

As a temporary measure, i have just done this    //filter $text = str_replace("/","-",$text); $text = preg_replace("/[^&a-z0-9_-\s']/i",'',$text); $text = str_replace(array('&',' ',''),array(' and ','-',''),$text); $text = trim(preg_replace("/-{2,}/",'...
by JayBird
Mon Oct 27, 2008 3:21 pm
Forum: General Discussion
Topic: Where the British developers at?
Replies: 31
Views: 3037

Re: Where the British developers at?

I live in York, and work in a village about 10 miles away.
by JayBird
Wed Oct 15, 2008 8:28 am
Forum: General Discussion
Topic: Lost iPhone
Replies: 14
Views: 1071

Re: Lost iPhone

Paul Arnold wrote:8O

Care to hook the rest of us up?!?!?
It was a one time offer im afraid.

He'll be a happy bunny in the morning as i have just sent him his new one :)
by JayBird
Wed Oct 15, 2008 1:43 am
Forum: General Discussion
Topic: Lost iPhone
Replies: 14
Views: 1071

Re: Lost iPhone

...and ive hooked him up with a new iPhone :wink:
by JayBird
Fri Oct 03, 2008 5:26 am
Forum: Code Snippets
Topic: Making Keyword Rich, Human Readable URLs
Replies: 8
Views: 42412

Re: Making Keyword Rich, Human Readable URLs

"Design/Project Engineer" still comes out as "designproject-engineer" for me 8O
by JayBird
Tue Sep 30, 2008 5:29 am
Forum: Code Snippets
Topic: Email w/ Attachments class
Replies: 14
Views: 94116

Re: Email w/ Attachments class

This thread is 3 years old.

If you want to send attachments via email, take a look at SwiftMailer