Flubba

4,039
Reputation
138 views

Registered User

Name Flubba
Member for 1 year
Seen 17 hours ago
Website
Location Northamptonshire, UK
Age 42
Technical Director for The First Post. PHP, MySQL, JavaScript, Flash
Nov
13
comment Can you help me understand this? “Common REST Mistakes: Sessions are irrelevant”
That was a good explanation, Vartec
Nov
9
revised PHP Background Processes
Formatting as code
Oct
7
awarded  Notable Question
Oct
6
answered mySQL Data Backup
Oct
6
accepted What do the result codes in svn mean?
Sep
25
awarded  Good Answer
Aug
22
awarded  Enlightened
Aug
3
awarded  Yearling
Jul
23
revised Delete SQL looping
edited tags
Jul
23
comment MySQL Join Condition
I had a look at this but it's too confusing - why have you got the name in the marks table as well? Why is the mark in the students table? It looks really badly normalised, but this may be just the result of your obfuscating the original names I guess. But it's too abstract to help you with, sorry.
Jul
23
revised MySQL Join Condition
Typo
Jul
23
comment php split string using regex
If you're going to go that far, why not go a little further and make it a well-formed XML file, then use SimpleXML to read it into an object. You just need an outer containing element and an XML prolog by the look of things.
Jul
23
answered php split string using regex
Jul
23
revised Is there any way to output the filtered data from Zend_Filter_Input?
Tags
Jul
23
comment Is it possible to test for scripting possibilities in the head of the document?
Noscript is cross browser
Jul
23
comment Should I let visitors to my site change the width of pages from fixed to a fluid?
This is not a good question for stackoverflow as there is no canonical right answer and it's verging on religious war territory
Jul
23
revised Unbelievable PHP script won’t echo out string
added 322 characters in body
Jul
23
comment Unbelievable PHP script won’t echo out string
The post opened with the fact that another script works as expected - that is not a particularly helpful suggestion, given the fact.
Jul
23
answered Unbelievable PHP script won’t echo out string
Jul
22
comment Modification of date format within a text file
awk is the best. Take any line-based input with fields separated by whitespace and pipe it into awk; you can access each field individually just using $0, $1 etc. e.g. cat myapachelog | awk '{print $10}' to display just the bytes transferred in a single col or cat myapachelog | awk '{total += $10} END {print total}' to output the total bytes served from the logfile
Jul
22
comment Creating elements in JavaScript
+1 for it being a complete pain in the ass to create even mildly complex HTML fragments with the DOM. Generate the HTML serverside and slap it in with innerHTML
Jul
22
comment Why, when I append to an empty array in PHP, is the index 2?
How about editing your answer to include some code - a minimal test case demonstrating this would be pretty useful. Also, which version of PHP is this in?
Jul
21
comment How do you do fuzzy searches using bound parameters in PDO?
Aha - they fixed it - you can now accept your own answer. Good for using StackOverflow as a library
Jul
21
accepted How do you do fuzzy searches using bound parameters in PDO?
Jul
21
accepted How do I turn on line numbers by default in TextWrangler on the Mac?
Jul
21
awarded  Nice Answer
Jul
19
revised How can you program if you’re blind?
Spelling
Jul
8
awarded  Disciplined
Jun
17
comment How do I interview a senior developer without pissing him off?
Protect yourself in advance by creating a paper trail of their issues that they might do one day
Jun
17
comment Best language for quickly creating user interfaces with out drag and drop?
Great question - be sure to update it to let us know how you got on!
Jun
16
awarded  Notable Question
Jun
12
comment Why is my ternary expression not working?
Thanks for your comments Orlando and Ed. This was an issue that caught me out and I posted it for mine and other's benefit. Answering your own questions is perfectly fine per the FAQ. Maybe you should go read it again if it's been a while...