7.5. HTTP Get and Post
This action is used to download and upload for web servers. Name: the name of the scripts Target URL: URL to download from or upload to. Repeat action: Total number of times to execute the action before the script proceeds to the next action. Duration: the max timer for this download or upload Wait: same as before Remark:
<?php $size = 500; $request = isset($_REQUEST)?$_REQUEST:$HTTP_POST_VARS; foreach ($request as $key => $value) { $size += (strlen($key) + strlen($value) + 3); } printf("ok"); exit; ?>
|