1,614 reputation
66
bio website midwebt.com
location Illinois
age
visits member for 3 years, 6 months
seen yesterday
stats profile views 38

Profectionary Webpagerator.


Feb
9
comment LightOpenID authentication using POST method
If your main concern is the URL looking nice, just have your endpoint redirect to something sane after grabbing all the data. While LOID supports POSTs, I doubt every OID provider is quite as flexible.
Dec
9
comment Combining CSS and JAVASCRIPT via intelligent automated php script
...also, just as a side-note: if you're familiar enough with PHP, you'd be doing yourself and your web server a huge favor by caching the compressed/minified CSS to a static file, so it doesn't have to parse all that stuff with every single page load. Client browsers will cache it just fine, but the CSS probably won't change often enough to churn through all that parsing on every single request. Alternately, manually minifying as needed will do the same with less server stress.
Oct
11
comment PHP alternatives to handling malformed input instead of throwing errors
Ah, sorry - haven't used gd in a long time. Might not answer your question at all, but: since the imagick lib is OO-based, you can play catch with ImagickExceptions instead. Changing from one to the other is a hassle though.
Oct
11
comment PHP alternatives to handling malformed input instead of throwing errors
All of the GD imagecreate* functions should already return false on error, or are you using something else?
Oct
2
comment Where can I find a good MySQL Database client?
Regarding remote servers, keep in mind that's an IP-based permission in MySQL - if you have a dynamic IP or access it from multiple locations, expect some potential security issues.
Sep
28
comment What HTTP header RESPONSES should I be explicitly setting when I output a webpage?
Manually setting cache headers is more for when you want to force a page to not cache. Check the Expires header in a page from your web server (via Firebug, or telnet to port 80, etc) to see what yours defaults to - chances are it's just fine.
Sep
21
comment How redirect user with all variables coming with POST
It should be a POST, unless the external service is doing something. If the service is redirecting internally, making it a GET, try adding curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true). And if it's expecting an HTTP referer header, you can set that with curl_setopt($ch, CURLOPT_REFERER, /*value*/). And check curl_error($ch) to find anything else that went wrong.
Sep
21
comment How redirect user with all variables coming with POST
Right, it won't redirect, it's a separate request. You'd have to handle any redirection yourself in the rest of the script.
Sep
14
comment How to make browser full screen on page load using javascript with timer control
Kiosk mode (full screen with hidden menu, which F11 does) can't be done through Javascript for security reasons. Related: stackoverflow.com/questions/1125084/…
Aug
27
comment What are the weaknesses of XML?
I'm increasingly convinced that the "M" in "XML" is for "madlib."
Aug
18
comment Any way to avoid loading unused classes for a non-oo app?
In that case, autoload should be a good fit. If you can get by with it's default functionality it'll be much quicker, compiled C vs. a PHP function. As for HTML Purifier... hrm. For most huge OO apps (frameworks et al), using APC (php.net/apc) or a similar cache is always a good idea - looked into that at all?
Aug
18
comment How to extract parameters from a URL and storing each in a new variable using PHP
filter_input(INPUT_GET, 'sub') in place of $_GET['sub'] would help stomp out the XSSness.
Aug
9
comment What should I do to save all kind of user input characters in MySQL database?
Generally the data will be converted to UTF8. If you were switching to say, US-ASCII, conversion might be an issue, but UTF8 can handle most anything you throw at it.
Jul
29
comment Database normalization design - single or multiple tables
Performance isn't necessarily a pro here. INSERT/UPDATE may eventually suffer as has to rebuild indexes on a single bloated table instead of 3 tightly-defined ones. Varies per database & table type and probably won't matter until the table is huge, but nothing comes without side effects.
Jul
9
comment Are PHP short tags acceptable to use?
@Josef - short tags are also XML processing instructions, so mixing PHP with XML or XHTML Strict can get a little weird. I'd say more quirky than bad, but yelling at PHP is popular.
Jul
8
comment Database procedure for locations
You don't need spatial for lat/long searches, just some basic trig. code.google.com/apis/maps/articles/phpsqlsearch.html is a great help in figuring it out.
Jul
8
comment PHP Class Database interaction (using PDO)
Side note: if you want to implement the Database class as a singleton (i.e. xx::getInstance()), leave __construct() blank or even make it private so that getInstance() is the only way to access it. Otherwise it's just a regular class with funny instantiation.
Jun
30
comment Making a custom PHP form by using a custom API
Check PHP's error log? Usually a fatal parse error/WSOD results in something getting logged there. Past that, make sure you're include()ing all the relevant classes.
Jun
30
comment Joining Tables: case statement for no matches?
Not a proper answer, but COALESCE() will return the first non-NULL parameter passed to it: "SELECT COALESCE(sp.position, 200) FROM ..." will return 200 when sp.position is NULL. Either way, +1 for "making the DB do as much of the work as possible."
May
20
comment Validation library for PHP/mysql
That was more in reaction to reading other responses, not sure I'd have marked it as The Answer. But with I_S/DESCRIBE you can at least check what's coming from the database, just not the what's going in. Personally I think the input side would be a total exercise in futility as long as char / varchar / text / nvarchar / etc types exist.