Re: Functions

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



benc11@xxxxxxxxx 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;


You need to return the value from the function:

return trim(strip_tags(.....)

or pass in a reference:

function cleaner (&$var)


--
Postgresql & php tutorials
http://www.designmagick.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux