Captain wrote:
hi, i want to do YES/NO confirmation (like POPUP). If YES, it will upload a file
PHP is server-side, not client-side. You can have the confirmation passed as a GET variable in a two-step process for example, i.e. first show a confirmation form if $_GET["confirm"] is not set, else check $_GET["confirm"] and process the uploaded file.
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php