11,146 reputation
21737
bio website gordiansolution.co.uk
location United Kingdom
age
visits member for 2 years, 7 months
seen 1 hour ago
stats profile views 1,005

I'm a professional PHP programmer with almost a decade of professional experience and considerably more as a hobbyist programmer. I've also had some exposure to Java, Object Pascal and am interested in learning objective C

I've started work on a PHP framework, though it's still at a very early stage and not yet really useful. The current source is available on GitHub.

I've also begun development of a CSS3 elastic grid for use on my own projects and had published that on GitHub as well.


4h
comment How do you get a random decimal number (positive and negative) in PHP
rand() is crap, use mt_rand() instead.
6h
comment How to upload file into server using smarty?
You don't look like you're doing a lot of error checking. You're not bothering to check the value of the error field, for a start. When dealing with user input (which is what a file upload is) you can't be caviller about verifying the data they've sent you.
May
17
comment Online orthography service for website
I had to look up what orthography meant. But from what little I've read I don't think it's something a computer could really do to an acceptable level. If it's for a business you might want to suggest they hire a proof reader.
May
16
comment Where do files from a php form go?
probably to the /tmp directory, or wherever temp files are supposed to go according to php.ini.
May
16
comment How to split a PHP class to separate files?
Such things are quite ugly anyway, no matter what you call them (mixins, traits, whatever obj-c calls the thing you're describing. Probably better to have helper classes that can be passed into the main class that provide plugin functionality.
May
16
comment How to split a PHP class to separate files?
PHP is not objective-C, don't expect it to work the same way. The only thing that might come remotely close in PHP is traits and as they're relatively new I wouldn't depend on PHP hosts having a PHP version that supports them available.
May
15
comment MySQL and PHP if/else
Just select all the rows you want based on the criteria you need (both delete confirmations being 'yes', I assume) and delete them. It's fairly elementary SQL.
May
15
answered Can I enable/disable parts of a query using prepared statements?
May
10
comment Optimize the sql query, too slow even on small data
What indexes do you have on your tables? Did you try EXPLAINing the query?
May
10
comment Is there a better way to store my functions on one server to use on multiple servers?
If you've got an architecture that requires different servers to provide different parts of the task for whatever reason, a better approach is to have each server have whatever PHP scripts are needed to accomplish the particular task the server needs to do, and have the scripts on the various servers intercommunicate with a standard text format such as JSON or XML. Both are well-supported in PHP.
May
9
revised HTML Validation in PHP File
added 79 characters in body
May
9
answered HTML Validation in PHP File
May
8
answered Is there a better way to store my functions on one server to use on multiple servers?
May
7
answered Accessing a public/private function inside a static function?
May
7
awarded  Notable Question
May
2
accepted Gracefully ending a thread that's waiting on a blocking queue
May
1
comment Gracefully ending a thread that's waiting on a blocking queue
I did think of that, but isn't forcing something to throw an exception as part of normal shutdown a bit of a kludge?
May
1
asked Gracefully ending a thread that's waiting on a blocking queue
Apr
30
awarded  Popular Question
Apr
29
comment Pros and cons of using a Thread or TimerTask for an Android game
I'm fairly sure that a TimerTask results in a thread being created, so I guess the difference would be one is explicitly a thread where the other is implicitly a thread.