Unsupported PHP script for displaying weight data over time
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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