Creating a Search Application -
(Page 25 of 29 )
Another private function that will be used with array_walk(), this one will add slashes to an element of an array.
<?php function _slashit(&$item, $key) { $item = addslashes($item); } ?> |
Next: >>
More Database Articles Articles
More By Matt Wade