Guest User

Untitled

a guest
Jan 16th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <script>
  2. $(document).ready(function(){
  3. $("#uploadform").hide();
  4. });
  5. </script>
  6.  
  7. <h2 id="needlogon"> You need to be logged in </h2>
  8. <a id="needlogon" href="index.php"> Back to start </a>
  9.  
  10. <?php
  11. if (isset($_SESSION['cid'])){
  12. echo '<script>
  13. $(document).ready(function(){
  14. $("#uploadform").show();
  15. $("needlogon").hide();
  16. });
  17. </script>';
  18. }
  19. ?>
  20.  
  21. <?php
  22. if (isset($_SESSION['cid'])){
  23. echo '<script>
  24. $(document).ready(function(){
  25. $("#uploadform").show();
  26. $("#needlogon1").hide();
  27. $("#needlogon2").hide();
  28. });
  29. </script>';
  30. }
  31. ?>
Add Comment
Please, Sign In to add comment