Hi all,
We use one small php script with php mail function in our web. The script did working just fine until we change the web server. We did investigate and we found the new server only accepts variables if we use the post method. We did fix the script. The problem now it was how can we use php scripts if we do the calls directly from the browser address bar ? since in this case we couldn't define the method, as we do if we use one form object.
This example doesn't work
<?php
mail($_POST["email"],
Thanks
Fernando
We use one small php script with php mail function in our web. The script did working just fine until we change the web server. We did investigate and we found the new server only accepts variables if we use the post method. We did fix the script. The problem now it was how can we use php scripts if we do the calls directly from the browser address bar ? since in this case we couldn't define the method, as we do if we use one form object.
This example doesn't work
<?php
mail($_POST["email"],
Thanks
Fernando