|
This means you are trying to use memory size which is larger than the allowed one that is set in your php.ini file.
Try to increase "memory_limit" in php.ini file.
or
just add this to the top of the page,
ini_set("memory_limit","128M");
Before trying the above, just go through your code. You are using too much of memory and this is not good in a programming point of view.
__________________
There is no secret ingredient.
|