PHP Support

I will update this php support section as needed:

Why is my php not working?
First make sure that your php document has the extension .php
Seccond Make sure your php script is coded correctly, We currently have Register_globals set to "off"
; You should do your best to write your scripts so that they do not require
; register_globals to be on; Using form variables as globals can easily lead
; to possible security problems, if the code is not very well thought of.

Note: This change occurred in PHP 4.1.0 because when register_globals is set to On, PHP scripts are more vulnerable to attacks. Some older PHP applications will require this setting to be on, but it is safer to write new scripts with the assumption that register_globals will be set to Off.

To retrieve the value of <input name="formVariable"> from a form submitted with the POST method, use the following syntax:

PHP code when register_globals = On

$myNewVariable = $formVariable;

 

PHP code when register_globals = Off

$myNewVariable = $_POST['formVariable'];

 


GO Here if you need more help! http://www.zend.com/zend/art/art-sweat4.php