Search Results

1
vote

Calling PHP functions within HEREDOC strings

You are pretty much describing what happens in a templating engine. You obviously know php pretty well. Have you considered taking a look at an actual templating engine? …
6
votes

When and why should $_REQUEST be used instead of $_GET / $_POST / $_COOKIE?

Sometimes you might want the same script to be called with several different ways. A form submit and an AJAX call comes to mind. In most cases, however, it´s better to be explicit. Also, se …
2
votes

global variables in php not working as expected

If you have a lot of variables you want to access during a task which uses many functions, consider making a 'context' object to hold the stuff: //We're doing "foo", and we need imp …
0
votes

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

I don't believe there's a simple answer to this, but I'd certainly want to be proven wrong. edit: turns out this can be controlled from .htaccess files. Thanks people! :) …
5
votes

Pros and cons of using one file for entire webpage?

If you mean a single landing page (e.g. index.php) which then uses session variables etc. to figure out what code needs to be included, then yes, this is an often used technique. Edit: and …
0
votes

Sort Object in PHP

If you want to explore the full (terrifying) extent of lambda style functions in PHP, see: http://docs.php.net/ma …
2
votes

Asynchronous PHP calls?

You can do trickery by using exec() to invoke something that can do HTTP requests, like wget, but you must direct all output from the program to somewhere, like a file or /dev/null, ot …