Philip
Staff Alumni-
Posts
4,665 -
Joined
-
Last visited
-
Days Won
20
Everything posted by Philip
-
Yeah, we are aware. I already shut down the forums and am planning on taking it completely offline. Thanks for the heads up though Should be redirecting now
-
Nope, we have many, many unlocked topics
-
http://forums.phpfreaks.com/topic/262327-bored-looking-for-ideas-heres-a-list/
-
Well.. you're returning (return $chapter_set;) before the while loop.
-
How would you solve this engineering problem?
Philip replied to yoursurrogategod's topic in Miscellaneous
IMO RFID sounds like the way to go here. The ball can be in any orientation, the tag could be implanted inside (although care to not mess up the balance of the ball) - thus not rubbing / coming off, and a lot less prone to errors from manual input. As long as there is only 1 ball in the location that is getting scanned / read, you'd be fine. You can get a range of readers for different lengths. A few mm would work out here. -
I have to agree with this, unfortunately. I'm glad they finally got around to working on it though (something that should have been done years ago). If you want to switch to beta and don't have a top bar, you can do so at the bottom of this page: http://php.net/my.php
-
So I'm curious... what are the thoughts on the new "beta" design over at php.net?
-
More than a lot
-
The following scenarios are what I consider code completion (all of which, I hate): Start typing "$foo" and it finishes it with "bar", resulting in "$foobar" Type a quote or start of like an html attribute and it puts in the closing quote e.g. type "<a href" and it finishes it to "<a href=''>"- this by far is the most annoying one IMO Type "<div>" and it includes a "</div>"
-
(Bug) Mangled pagination in New Content page
Philip replied to requinix's topic in PHPFreaks.com Website Feedback
Blegh. I'll disable it again -
(Bug) Mangled pagination in New Content page
Philip replied to requinix's topic in PHPFreaks.com Website Feedback
Alright, it is fixed. Was a 3rd party hook to enable the "Answered" prefix on the search results (including vnc). I'll see if I can create my own to bring that back, -
(Bug) Mangled pagination in New Content page
Philip replied to requinix's topic in PHPFreaks.com Website Feedback
Huh.. I wonder why it happened with only that one thread though. -
I usually go outside and run / ride to clear my head.
- 5 replies
-
- programming
- applications
-
(and 1 more)
Tagged with:
-
Is this normal or should I be concern?
Philip replied to Sam46's topic in PHPFreaks.com Website Feedback
GA filters out bots though, so likely some bot really, really likes you ;-) -
Where is $runQury being defined? Did you mean $run?
-
I must be the only one that hates code completion.
-
You can use JS to change the page. If you're running HTML5, you can use the History API to change the page, which should leave the music alone. There is an awesome library that helps support this that you can look at - https://github.com/browserstate/history.js Otherwise, I think an iFrame would be your best bet.
-
Can't reply to website critique forum
Philip replied to SleepingGiant's topic in PHPFreaks.com Website Feedback
Indeed. You can thank spam for this -
Interesting, but how does it work? Do you just post whatever you want, is there a person that is in charge, or what?
-
Take a deep breath all. After all - it's just code /thread
-
If you're pointing to the gray / black, that looks to be an image on td.catBottom ( http://i.imgur.com/eTrETT6.png )
-
bbcode on urls within php code tags
Philip replied to QuickOldCar's topic in PHPFreaks.com Website Feedback
Use tags instead. -
http://forums.phpfreaks.com/topic/182040-which-php-editor-do-you-think-is-the-best-v2/
-
mysql* expects parameter 1 to be resource, boolean given This means your query failed, for some reason or another. Remove any error suppressing (@), make sure you have error displaying enabled, and output mysqli_error to see specific information about your error!