Unsupported PHP script for displaying weight data over time
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

export.php 395B

1234567891011121314151617
  1. <?PHP
  2. require('user-data.php');
  3. /* For format of user-data.php see comment in data.php.
  4. *
  5. * In addition, this script requires a START_DATE constant containing
  6. * the unix timestamp of the first entry in the $data array.
  7. */
  8. foreach ($data as $week => $value) {
  9. if ($value != -1) {
  10. echo date('Y-m-d', strtotime('+' . $week . ' weeks', START_DATE)), ';', $value, "\n";
  11. }
  12. }
  13. ?>