Guest User

Untitled

a guest
Jan 23rd, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <?php
  2. $start=$_REQUEST["start"];
  3. $end=$_REQUEST["end"];
  4. $step=$_REQUEST["step"];
  5. ?>
  6.  
  7. <html>
  8. <head></head>
  9. <body bgcolor="#DBA901">
  10. <?php
  11. do{
  12. echo"<table border='1'><td><tr>$start</tr></td></table>";
  13. $start++;
  14. $a=$start + ($step-1);
  15. $start=$a;
  16. }
  17. while
  18. ($start <= $end);
  19. ?>
  20.  
  21. </body>
  22. </html>
Add Comment
Please, Sign In to add comment