I am working on a PHP project. This project is using mysql_fetch_array many places.
now. I want to sanitize data. So I want that after php function mysql_fetch_array is called. My function to sanitize data should be called. I don't want to call my function in each of its call. because this call will be at more than 400 places.
Is there any way to achieve this?