sanitize_db_out.php

<?php


function sanisize_db_out($data){
               
               
// strip slashes
               
$data stripslashes($data);

               
// if the data is a string upper case the first letter.
               
if (is_string($data)){
                 
ucfirst($data);
               }
   return 
$data;
  
}
?>

Paul's Code Library

Categories

Home

AJAX

classes

database_functions

date_functions

file_functions

googlevideo_and_youtube_api

htaccess

image_functions

string_functions