| bio | website | gordiansolution.co.uk |
|---|---|---|
| location | United Kingdom | |
| age | ||
| visits | member for | 2 years, 7 months |
| seen | 2 hours ago | |
| stats | profile views | 1,001 |
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.
|
Mar 7 |
comment |
PHP time difference between start and end times (multiple) By querying the DB and displaying the difference between the two times |
|
Mar 7 |
comment |
when creating view in mysql,Whether can use date function? 5.1 is a rather old version and I don't think it's officially supported anymore. Even if it is I'd recommend you try upgrading to a newer version |
|
Mar 7 |
revised |
when creating view in mysql,Whether can use date function? added 24 characters in body |
|
Mar 6 |
comment |
soap solution for php What's your PHP code like? |
|
Mar 6 |
comment |
Single dimensional array from a while loop in php Then I'd appreciate if if you accepted the answer :) |
|
Mar 6 |
comment |
Single dimensional array from a while loop in php yeah, fixed it now. |
|
Mar 6 |
answered | Single dimensional array from a while loop in php |
|
Mar 5 |
comment |
Ascending Numbers from array for each individual element If your question isn't getting answers because it needs to be rewritten, then you are encouraged to rewrite the existing question. It's generally considered bad form to keep posting additional questions, unless your question got an answer that led to a followup question. |
|
Mar 5 |
comment |
Ascending Numbers from array for each individual element possible duplicate of jquery slider with newest content first gets reversed thumbnails (clicking on first thumb will trigger last) |
|
Mar 4 |
comment |
MySQL: Alternatives to ORDER BY RAND() I just tried selecting 10 random records on an InnoDB table of slightly over half a million records, and I didn't see any significant performance gains over just using order by rand(). |
|
Mar 4 |
revised |
PHP giving 8.8817841970013E-016 instead of 0 edited tags |
|
Mar 4 |
comment |
PHP giving 8.8817841970013E-016 instead of 0 You might want to read up on floating point numbers. Long story short, there's some numbers you just can't represent in binary, just like you can't represent 1/3 in decimal. As for a fix, number_format() would probably do nicely, unless the calculation is critical. In that case you're better off avoiding floating point. |
|
Feb 28 |
comment |
mysql php query sometimes very fast ansd sometimes very very slow There are far too many variables to be able to say with any certainty why the performance varies. Could be indexes (or lack thereof), query planner weirdness, machine load at the time the query is run, network traffic issues, anything. I will say this though, it's a huge query that does a lot of LEFT JOINs. It might be faster if it was simpler. |
|
Feb 28 |
comment |
Why is php base64_decode is returning null? When I said "Posting a chunk of the string doesn't help" I didn't mean "post the entire string"! Try and construct a test case with a small string that highlights the issue |
|
Feb 28 |
comment |
Why is php base64_decode is returning null? Posting a chunk of the encoded string isn't much help! |
|
Feb 28 |
comment |
To change the div style in css file Can't be done, not with PHP at least. PHP is server side and what you need to happen needs to happen on a client event. |
|
Feb 26 |
comment |
How to delete a particular XML child node based on their value @fab You're right, I meant XPath. Put that one down to lack of morning coffee :) |
|
Feb 26 |
comment |
How to delete a particular XML child node based on their value Not really an answer because I don't know how to solve this, but if I had this problem presented to me I'd start looking for a solution in PHP's DOM classes, which include a DOMXQuery class. It ought to be possible with an XQuery to find nodes that meet very specific criteria |
|
Feb 25 |
revised |
“git add” command is returning “fatal: outside repository” error message Not a PHP question |
|
Feb 25 |
comment |
How to remove a string from another string in php Look up str_replace() though manipulating SQL queries as strings is usually best avoided anyway. |