TravisO

2,338
reputation
256 views

Registered User

name TravisO
member for 1 year
seen 16 mins ago
website
location Ithaca
age 33
Solutions Developer (PHP, C# ASP.NET, C# Desktop apps, MySQL, MS SQL, PostgreSQL, HTML, Javascript, CSS)
3m
comment PHP & MySQL vote count problem?
You get a vote down for abusing this site, you already pasted this code once, an hour before you created this question. If you want to change some details of your question, edit the original question, DO NOT ask a new one, you're just repeating yourself.
5m
comment PHP & MySQL vote count problem?
NEVER EVER EVER turn on register_globals, somebody should take away your server for even suggesting this.
11m
comment Securing PHP forms for beginners? Resources?
agreed, plus by using sessions, you can "Go Back" to a form, check for the existence of the vars, and put them in the form values, in those cases when people want to go back to make a change or because future form validation realized a previous page was no longer legit.
15m
revised Good PHP & MySQL book that shows how to build a rating system?
added 5 characters in body
21h
comment PHP: Storing file locations…what if overwritten?
If you're going to "continue" or add to somebody's answer, use a comment on their answer, not post it as an answer. Mostly because if there are lots of answers, your post will not be next to the one you're adding to.
21h
answered Good PHP & MySQL book that shows how to build a rating system?
23h
comment Recommendation for a 2D screen ruler
I agree, simply putting up any kind of ruler won't give you the real deal because depending on your markup, the page layout will change and realign depending on the browser width. Simply resizing the browser IS the best solution.
Dec
3
comment if uses haven’t accept payment, unset session after 5-10 min. PHP
The question is poorly written but it's a good question as it's a problem most people will run into.
Dec
3
comment if uses haven’t accept payment, unset session after 5-10 min. PHP
Even better, store this value in a PHP session then the extra trip to the database won't be required.
Dec
2
comment When in optimization phase, would it be smart to pass all array by ref?
I agree, minor changes like there are more often snake oil than performance improvements, especially when you talk about compiled languages (yes I know this is PHP). If you are this concerned about memory usage and performance there are more beneficial changes, some of which you won't like such as: not using objects or classes (they're not efficient in PHP 5.x and I haven't ran any benchmarks of PHP 6 yet).
Nov
7
awarded  Yearling
Oct
15
awarded  Nice Answer
Sep
25
accepted mysql procedure? Function?
Sep
15
comment ereg_replace for PHP 5.3 + ?
I totally agre... preg replaced the ereg functions a long time ago
Jun
18
comment Debugging PHP code
I prefer phpDesigner, everytime I hear some say they've "used every IDE out there" more often than not they never tried phpDesigner, and more than a few times people that I recommended it to, loved it. It has built in support for Xdebug and it's very cheap, like ~$55usd.
Jun
18
comment Debugging PHP code
While printing out data works, it's not the most efficient way, I'm down voting this because, despite doing it myself at times, it's not a great answer to the problem.
Jun
18
comment PHP If statement problem
I agree, you should always initialize array() in PHP becuase if the code doesn't do what you expect and returns nothing or 1 value, you won't have an array. I've seen this coding mistake many times.
Jun
18
comment Check the language of string based on glyphs in PHP
I'm guessing you already know this but.. you do realize transliteration is the worst way to translate things, proper multilangual systems (I've worked with many) use professionals to manually translate things and store each language's version of text. The differences are painfully obvious, take Spanish to English, with transliteration the Spanish-> English would read "The house red big" instead of "The big red house".
Jun
18
answered how to turn off these PHP warnings ?
Jun
18
comment Query that works in SQL but not in PHP
You don't put quotes around INTs, depending on your database
Jun
18
comment Coalesce function for PHP?
Save a tiny bit of ram and don't duplicate the args into an array, just do foreach(func_get_args() as $arg) {}
Jun
18
comment Is json_decode in PHP guaranteed to preserve ordering of elements when returning an array?
Great you test and it works now, but you never know if an update will alter this order, better safe than sorry, set an order if you need an order.
Jun
18
answered Is json_decode in PHP guaranteed to preserve ordering of elements when returning an array?
Jun
18
comment non relational databases : need a recommendation
Anybody who voted this comment down obviously ignored the part of his question where he says he has 32GB of data. You can't efficiently load that via XML, get real people!
Jun
18
comment What Are the Pros and Cons of Filemaker ??
@Ash - Except that, more likely than not in the Biz world, systems grow and it becomes a multi-user system. Or the system expands into a mess. There's a reason some companies outright ban Access solutions. Yes I'm biased, I see Access and Filemaker akin to using duct tape to fix rust spots on your car. Might seem like a good idea at first, but the more you use it, the flaws really begin to show. But once you're that far down the rabbit hole in Access/Filemaker, it's easier to suffer than it is to re-invent the wheel. These technologies are a pandora's box, use at your own risk.
Jun
18
awarded  Good Answer