Sorry your browser is not supported!

You are using an outdated browser that does not support modern web technologies, in order to use this site please update to a new browser.

Browsers supported include Chrome, FireFox, Safari, Opera, Internet Explorer 10+ or Microsoft Edge.

Geek Culture / PHP anyone?

Author
Message
JD Programming
20
Years of Service
User Offline
Joined: 22nd Nov 2003
Location: United Kingdom
Posted: 25th Nov 2003 00:09
Was wondering if anyone has programmed in PHP before and if so what's the must advanced thing you've done?

For me it would be a link adder on my website http://www.jdpgamestudios.co.uk/User, but that isn't that advance, but ohh well

Programming is one of the first steps to become an individual...
http://www.jdpgamestudios.co.uk
Elleomea
21
Years of Service
User Offline
Joined: 2nd Aug 2003
Location: England
Posted: 25th Nov 2003 00:58
Mmm, I've done a few little things in PHP. An IRC client, a few sales tracking things, odd news scripts, the usual. Currently working on a content management system and a comments system (similar to slash)

How much ham could a hamster stir, if a hamster could stir ham?
JD Programming
20
Years of Service
User Offline
Joined: 22nd Nov 2003
Location: United Kingdom
Posted: 25th Nov 2003 01:01
Ooo, cool - well good luck with that

Programming is one of the first steps to become an individual...
http://www.jdpgamestudios.co.uk
lagmaster
22
Years of Service
User Offline
Joined: 26th Aug 2002
Playing:
Posted: 25th Nov 2003 01:56
whats with the shaking webpage?

lagmasteruk - http://www.lagmaster.net is alive! http://www.dbforums.co.uk/ - another db forum!

Dark Snippet Pro V9 is out!!
PiratSS
21
Years of Service
User Offline
Joined: 18th Oct 2002
Location:
Posted: 25th Nov 2003 02:01
Did you use swift for those animations?

"Talk doesn't cook rice." -Chinese proverb
klariza
20
Years of Service
User Offline
Joined: 6th Nov 2003
Location: uk
Posted: 25th Nov 2003 03:36
got the book to learn php, But for some unknown reason - i did not get round to using it proper ...

I am obsessed by Toasters - especially talking ones...bizaare really isn't it?
Dave J
Retired Moderator
21
Years of Service
User Offline
Joined: 11th Feb 2003
Location: Secret Military Pub, Down Under
Posted: 25th Nov 2003 08:14
Quote: "whats with the shaking webpage?"


I believe it's a Flash script straight off FlashKit.com, personally, it annoys me a lot but I guess others like it.


"Computers are useless they can only give you answers."
JD Programming
20
Years of Service
User Offline
Joined: 22nd Nov 2003
Location: United Kingdom
Posted: 25th Nov 2003 14:52
Yeah, the script is off http://www.flashkit.com, but I created the menu system myself

Programming is one of the first steps to become an individual...
http://www.jdpgamestudios.co.uk
Shock
AGK Developer
21
Years of Service
User Offline
Joined: 24th Oct 2002
Location: United Kingdom
Posted: 25th Nov 2003 22:04
php ownz,

iv'e made a couple of things in it (unfortunately none of these are online, all my projects have gone down the drain), the biggest projects have probably been an auction website (specializing in online business auctions), and a fully working hosting script (with all the features you'd expect- uploading, simple html editor, hosted sites directory listings, etc).


Sticking feathers up your butt doesn't make you a chicken.
JD Programming
20
Years of Service
User Offline
Joined: 22nd Nov 2003
Location: United Kingdom
Posted: 25th Nov 2003 22:07
Wow! That sounds pretty cool 'Shock'

Programming is one of the first steps to become an individual...
http://www.jdpgamestudios.co.uk
David T
Retired Moderator
22
Years of Service
User Offline
Joined: 27th Aug 2002
Location: England
Posted: 25th Nov 2003 22:57
A web scoreboard for a sponsored ergothon I took part in (a rowing event)

A forum

My website (not tricky, just complex): http://www.davidtattersall.me.uk

A project management system complete with file uploads

"Help! My keyboard is stuckkkkkkkkkkkkkkkkkkkkkkkkkkkkk"

Mercenaries in Space demo @ http://www.davidtattersall.me.uk
David T
Retired Moderator
22
Years of Service
User Offline
Joined: 27th Aug 2002
Location: England
Posted: 26th Nov 2003 00:30




"Help! My keyboard is stuckkkkkkkkkkkkkkkkkkkkkkkkkkkkk"

Mercenaries in Space demo @ http://www.davidtattersall.me.uk
JD Programming
20
Years of Service
User Offline
Joined: 22nd Nov 2003
Location: United Kingdom
Posted: 26th Nov 2003 01:35
Indeed

Programming is one of the first steps to become an individual...
http://www.jdpgamestudios.co.uk
Hockey07
21
Years of Service
User Offline
Joined: 18th Dec 2002
Location: United States
Posted: 26th Nov 2003 19:44 Edited at: 26th Nov 2003 19:45
Most advanced thing Ive coded? A forum: http://forumbuilder.dev-c.nl/demo2

Currently, ive stopped development on that and started coding a DIFFERENT code..currently its a modified funkboard (i coded 13 new features so far into it though ), with modified looks ect, then i wanna rewrite some of the code, so i can consider it mine

Second most advanced thing would probably be my phpbb autointsaller coded 100% by me teehee

Next would be a bunch of other small things

Current Project: SWATish game... O_O
Richard Davey
Retired Moderator
22
Years of Service
User Offline
Joined: 30th Apr 2002
Location: On the Jupiter Probe
Posted: 27th Nov 2003 07:26 Edited at: 27th Nov 2003 07:27
Most advanced thing I've done in PHP? This web site! It took months and was well worth it. All modules (CodeBase, Showcase, User Registration, etc) are 100% site independant and just pick up the style of the site you're on at the time. Everything is 100% object orientated. The very fact I'm posting this message means Apollo is talking to my user object and finding out what permissions I have, etc.

All the content is actually static HTML (why pull it out of a database when it doesn't change much?) and there are some lovely cross-site tricks, like global files which can appear on any sub-site but colour themselves accordingly.

The User system is linked into everything and I can disable extremely small items for any user.. for example I can ban someone from doing something as minor as changing their signature. Every action has a permission and a subsequent lock.

The best part of all is that the whole site runs from just one page (index.php). So if we ever wanted to re-design the site in the future we just modify that page and that's it.. every single site would change. The index page is extremely intelligent, it knows which domain it is being called from and serves the content accordingly.

Apollo too, although it needs more work done on it, I'm really happy with. I spent days optimising the SQL table structure so every action could run in the smallest number of queries possible and each one of them stress tested so they only bring back the minimum results. PHPBB, Invision, etc can take as many as 20 queries just to bring back a forum thread index; Apollo will do it in 3. If time allowed I'd love to release it "stand alone".

I've been building web sites (professionally) since 1995 and truly this is my finest piece of code/work yet, and there's more to come

Cheers,

Rich

"It's easy to be mean when death equals a high score screen."
"You can take your Quake and go away, I'd rather play Bubble Bobble any day."
JD Programming
20
Years of Service
User Offline
Joined: 22nd Nov 2003
Location: United Kingdom
Posted: 30th Nov 2003 17:09
Just let me say Richard that you've done a great job

Programming is one of the first steps to become an individual...
http://www.jdpgamestudios.co.uk
Martyn Pittuck
22
Years of Service
User Offline
Joined: 27th Aug 2002
Location: United Kingdom
Posted: 30th Nov 2003 18:28
Lol, i hate big projects.

Like my website is done using a template system which works well for what i need. Only thing is i cant be arsed to make a admin area where i can add pages... Everything has to be done through PhpMyAdmin (Which is only accesible through the cpanel, aint life grand...

But, if I were getting paid i probably would finish it, its all a matter of time, like college, robots and going out with mates makes no time for websites etc.

Oh well, college work to do.

Web Design Starting from $200. Special limited offer. MSN or Email me for more information.
adr
21
Years of Service
User Offline
Joined: 21st May 2003
Location: Job Centre
Posted: 2nd Dec 2003 13:17
I think the biggest PHP project I've ever come across is the one that I work on everyday...

an SMS Gateway, a Content Managment system (with about 50,000 products), a CRM back and front end, a reporting system, *nix style daemons, admin tools, product delivery (both OTA and over WAP), templates system...

hmm... have I missed anything?

PHP truely pwnz.

Can I ask you a Question?
What is it?
It's an interrogative form of sentence, used to test knowledge. But that's not important right now.

Login to post a reply

Server time is: 2024-09-20 20:37:05
Your offset time is: 2024-09-20 20:37:05