Quote:
|
i upload my php file here .
|
No need to upload it. Just paste some relevant code here, enclosed by [PHP
][/PHP] tags.
btw, what you are getting is not an error. It's a warning to inform you that you are using some variables in your scripts before getting intialised. You may avoid this by adding a condition around your code, like
PHP Code:
if(isset($_POST['name_of_a_form_element'])){ // or $_GET, in case, if you are using it.
}