Posts Tagged ‘php function’

Problem with WordPress Plugin Activation

Monday, January 11th, 2010

If you’re running a number of memory hungry plugins, you might exceed the 32mb worth of memory allotted by the standard WordPress install. I’ve used an e-commerce solution plugin before that used significantly more memory than the others.

(more…)


Grabbing PHP Form variables with the Extract() Function

Monday, December 21st, 2009

The extract() function is a quick and convenient way of grabbing form variables. Rather than going through the entire $_POST array assigning variables to each element, simply do the following:

(more…)