Advertisement
Guest User

Untitled

a guest
Nov 9th, 2017
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. Live/production
  2.  
  3. <?php
  4. list($first,$host) = explode(".",$_SERVER["SERVER_NAME"]);
  5.  
  6. $var ="<iframe width='100%' height='100%' style='height: 100vh; border: none;' src='https://appName.bubbleapps.io/$first'></iframe>";
  7. $var .= "<style>";
  8. $var .= "body {margin: 0;}";
  9. $var .= "</style>";
  10. echo $var;
  11.  
  12. ?>
  13. _______________________________
  14. Testing:
  15. _______________________________
  16. <?php
  17. list($first,$host) = explode(".",$_SERVER["SERVER_NAME"]);
  18.  
  19. $var ="<iframe width='100%' height='100%' style='height: 100vh; border: none;' src='https://appName.bubbleapps.io/version-test/$first'></iframe>";
  20. $var .= "<style>";
  21. $var .= "body {margin: 0;}";
  22. $var .= "</style>";
  23. echo $var;
  24.  
  25. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement