> Try instead:
> 
> if( $_POST['action'] =="test" ){ echo "Test";}
> 
> HTH
> Ignatius

This should really be

if( $_GET['action'] =="test" ){ echo "Test";}

since it's a get-request we're dealing with...

Regards
Joakim

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

Reply via email to