VO2max Calculator 🏃Running
2015-11-23
IN1, 2015-11-23 00:00:00
IN1, 2023-04-10 14:16:28


VO2max Calculator calculates the maximum oxygen uptake based on pace, training heart rate, resting heart rate and maximum heart rate. This tool is based on the VO2 scores formula of Alan Couzens and weights against standard evaluations for VO2max from the Coop […]


Simple FTP upload with PHP
2015-06-19
IN1, 2015-06-19 00:00:00
IN1, 2023-04-10 14:16:28


How to to upload a file to a FTP Server using PHP. There are several ways to accomplish this.

Using file_put_contents() command.

// FTP access data
$sUser     = 'developer';
$sPassword = 'secret';
$sHost     = 'ftp.example.com';

// file informations
$sFilename = 'file.txt';
$sContent  = 'Example Content. DateTime: ' . date('Y-m-d H:i:s');

// save the file
$bSuccess = (boolean) file_put_contents(

    // target FTP fi […]


This website uses Cookies to provide you with the best possible service. Please see our Privacy Policy for more information. Click the check box below to accept cookies. Then confirm with a click on "Save".