Two things:
1. You're not returning anything from the function.
2. You're not even using the function.
[EMAIL PROTECTED] wrote:
I am trying to create a function to clean up variables that are user
inputted from a form. I am not getting this script to work. Can anyone
help.
---Start Script---
function cleaner($var)
{
trim(strip_tags(ucfirst(addslashes($var))));
}
$var = "abc's";
echo $var;
---End Script---
When I run the above script it produces nothing. Instead of a result of
"Abc\'s".
--
Online library -- http://pueblonative.110mb.com
138 books and counting.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php