script_php.php 818 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15">
  5. <title></title>
  6. </head>
  7. <body>
  8. <?php
  9. echo "<p>Here's some dynamically generated text and some random circles...</p>";
  10. ?>
  11. <script type="text/php">
  12. $max_x = $pdf->get_width() - 50;
  13. $max_y = $pdf->get_height() - 50;
  14. for ( $i = 0; $i < 30; $i++) {
  15. $pdf->circle(rand(50, $max_x), rand(50, $max_y), rand(10, 70),
  16. array(rand()/getrandmax(), rand()/getrandmax(), rand()/getrandmax()),
  17. rand(1,40));
  18. }
  19. </script>
  20. <?php
  21. echo "<p>Current PHP version: " . phpversion() . ". ";
  22. echo "Today is " . strftime("%A") . " the " . strftime("%e").date("S").strftime(" of %B, %Y %T") . "</p>";
  23. ?>
  24. </body> </html>