Unsupported PHP script for displaying weight data over time
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. ?>