Unsupported PHP script for displaying weight data over time
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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