naczu
Joined: 17 Feb 2009
Posts: 2
|
| Posted: Wed Feb 18, 2009 2:57 pm Post subject: PHP filter functions doesn't work |
|
|
Hi Apache2Triad users;
I am using Windows XP SP3
I have a problem with A2T. I want to use php filters on my codes but it doesnt work local. there is a example below.. this is not working localserver... Please help!!! how can i activate this filters.. could you explain it step by step please!!
Code: <?php
$int = 123;
if(!filter_var($int, FILTER_VALIDATE_INT))
{
echo("Integer is not valid");
}
else
{
echo("Integer is valid");
}
?> |
|