13,864 reputation
21130
bio website
location
age
visits member for 3 years, 5 months
seen 2 hours ago
stats profile views 1,195

16h
comment CSS3's border-radius property and border-collapse:collapse don't mix. How can I use border-radius to create a collapsed table with rounded corners?
apply a radius to the table too, or else it looks weird when you apply a background to the table itself.
Jun
16
answered Get records with month and year - SQL
Jun
16
comment mysql IN Clause not accepting string variable
you should echo the text of your $sql query. This is a standard debugging practice(to inspect things, instead of assuming the value is what you think).
Jun
16
answered String Split null value in to array to use if statement
Jun
16
comment Turn off or handle errors within a production environment?
IF your team likes to to turn off error reporting in production, I would show them this picture and make fun of their lameness.
Jun
16
comment php.ini error_log does not work anymore
look at phpinfo() output to see the location of the correct php.ini file to edit
Jun
16
comment Get text of div
see innerTEXT and textContent
Jun
15
comment PHP / MySQL Performance Suggestion
Nevermind. I fail at reading.
Jun
15
comment PHP / MySQL Performance Suggestion
are your statements correct for count(*) queries which use a where clause? I don't think so.
Jun
15
comment PDO Simple User Class Wont Work
robert, you need to turn on display_errors and set error_reporting = E_ALL. trying to develop code without it is insane. php should be telling you a fatal error.
Jun
14
accepted multiple submit widgets, detecting which button was activated
Jun
11
asked multiple submit widgets, detecting which button was activated
Jun
8
revised PHP passing parameters while creating new object, call_user_func_array for objects
added 13 characters in body
May
16
awarded  Nice Answer
Apr
26
awarded  Nice Answer
Apr
21
awarded  Famous Question
Apr
7
revised Given a string describing a Javascript function, convert it to a Javascript function
added 89 characters in body
Apr
3
awarded  Necromancer
Mar
22
awarded  Peer Pressure
Mar
22
comment PHP function to get recursive path keys with path
@AntonioE. you could also just use the RecursiveIteratorIterator::SELF_FIRST arg for the RecursiveIteratorIterator constructor(then it will visit all nodes, not just leaves). But, you will get many partial, less than full paths as a result.