Search Results

0
votes

How can I split a PHP script that takes a long time to run into smaller chunks?

You might also want to try optimizing your script. Are you doing too much in your loop? Could you move something out of the loop? What are you using to get the list of files? Is there a more light- …
2
votes

Forms and no Cookies - elegant way to submit forms

When you say putting it into a hidden field doesn't work, can you elaborate on what doesn't work about it? When faced with a situation where every (or a lot) of form submits need some state …
2
votes

What puts less load on a PHP server: SimpleXML or json_decode?

There's only one way to determine which is going to be easier on your server in your application with your data. Test it! I'd generate some data that looks similar to what you'll be …
0
votes

What is the best method of getting the key of the last added array item in PHP?

If you can guarantee that your array won't have any non-numerical keys and that you aren't going to be deleting any keys, then the last element added to your array's key will be $la …
0
votes

How do I include a php variable within the value element of an html input tag?

If you find yourself doing this often you may want to look into a templating system for PHP, such as Smarty. …