/ Published in: PHP
This is a method of my database class which let me sift the unsafe data inputs down.
Expand |
Embed | Plain Text
public function siftDown($dataStack){ return $dataStack; } foreach($dataStack as $p=>$data){ $safeData[$p] = $data; } return $safeData; }
You need to login to post a comment.
