Search Results

0
votes

What’s the best way to separate PHP Code and HTML?

Personally I found the way that works for me is to work with XSL Transformations (XSLT). Have one script containing your (PHP) logic …
0
votes

File downloads in IE6

As pilif already mentions, make sure to turn off the server-side gzip compression. For me this has caused problems with PDF files (among other types) and for maybe-not-so-obscure reasons also with …
3
votes

How can I turn on PHP errors display on just a subfolder

The easiest way would be to control the error reporting from a .htaccess file. But this is assuming you are using Apache and the scripts in /html/beta/usercomponent are called from that directory a …
0
votes

Keeping my PHP pretty

In stead of implementing templating systems on top of a templating system (PHP itself), creating overhead per default, you can go for a more robust solution like …