0
votes
Keeping my PHP pretty
Doing that, however, makes my php code look horrific... it really messes with the formatting and "shape" of the code. How should I get around this?
Treat your P …
0
votes
How to Safely Accept Pasted <embed> Code (PHP)
Your chances of detecting malicious code reliably by scanning inputted HTML are about nil. There are so many possible ways to inject script (including browser-specific malformed HTML), you won't be …
1
vote
PHP: Removing an attribute from a DOMNode object
If you've got a DOMNode that has some attributes, it must be a DOMElement. In which case you should be able to call removeAttribute/removeAttributeNS/removeAttributeNode on it.
It is somewh …
1
vote
How can web form content be preserved for the back button
It's up to the browser, but in most cases you don't have to do anything.
IE, Firefox, etc. will happily remember the contents of the form in the previous page, and show it again when Back i …
0
votes
PHP apache_request_headers() diagrees with reality (as confirmed by Firebug): why?
I can't specifically answer this case, but in general I'd recommend using a (query) parameter to signal xmlhttp requests, instead of a header. You never know what funny security or proxy server mig …
6
votes
What is the best way to insert HTML via PHP ?
-1 for the typical hysterical ‘use [my favourite templating system] instead!’ posts. Every PHP post, even if the native PHP answer is a one-liner, always degenerates into this, just as every one-li …
0
votes
Multi file upload with PHP/Javascript and no flash
If you have a reasonable maximum limit on the number of files, it's probably better to include that many file upload fields in the static form, then use the JavaScript to hide the superfluous ones, …
-1
votes
scripts embedded in images
Are you talking about the issue where IE will interpret an image with HTML tags in it as being an HTML page, thus allowing HTML and script injection from user-submitted images?
(The bug be …
0
votes
javascript equivalent of php’s preg_match_all
JS idiom for non-Regexp global replace:
input_content.split('<br>').join('\n')
…
2
votes
PHP PDF-Generation - IE7/Acrobat8: “Website cannot be displayed”
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
...so IE won't store the file in the Temporary Internet Files f …
0
votes
PHP image upload issues
You do know this is completely insecure, right? You might be able to get away with it on an intranet with only trusted users, but otherwise this code is guaranteed trouble.
file['name'] can …
1
vote
Generating random results by weight in PHP?
For an efficient random number skewed consistently towards one end of the scale:
Choose a continuous random number between 0..1
Raise to a power γ, to bias it. 1 is unweighte …
0
votes
What is the point of this line of code?
As others have pointed out, it's code written by someone who doesn't know what on earth they're doing.
I also had a quick browse of the code to find a total lack of text escaping when putti …
2
votes
taking care of XSS
HTML-escaping on the way in is obviously The Wrong Thing, but could be a temporary fix until you replace the code with something proper. In the long term it would be unmaintainable and you'll have …
0
votes
Correct indentation of HTML and PHP using Vim
php-correct-indenting only cares about your PHP, and assumes the readability of the HTML is of no interest. An XML indenter would position the tags nicely, but wouldn't be able to indent the conten …
