I want to crypt all my database.

I have in my scripts, a lot of mysql_querys, where I put and get data from
the database.

How can I insert crypt data in the database and then get the crypted data
from database and decrypt?

But I'd like to do some functions to do that. Because in case that I
change
the tables name I need to change the code just in "one" place.

Something like:

function Select ($columm, $tables, $where, $order) {

  $sql="SELECT $columm FROM $tables WHERE $where ORDER BY $order";
  $result=mysql_query($sql) or die ("Error 1.");

  // now the crypt stuffs...

}

thanks for any help and/or idea,

Augusto Cesar Castoldi
Florianópolis - SC - Brazil


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to