Advertisement
Guest User

Untitled

a guest
May 3rd, 2012
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1.  
  2. <body>
  3. <?php
  4. session_start();
  5.  
  6. if (!isset($_SESSION["user_id"])) {
  7. header("location:http://lemonparty.org/");
  8. exit;
  9.  
  10. } else {
  11.  
  12. define('id', $_SESSION["user_id"]);
  13. }
  14. ?>
  15. <script type="text/javascript">
  16.  
  17.  
  18. $.ajax({
  19. url: "upload.php",
  20. cache: false,
  21. success: function(html){
  22.  
  23. },
  24. });
  25.  
  26. </script>
  27. <div id="form">
  28. <p style="color:#E2E2E2;"> Insert text into footer!</p>
  29. <form method="post" action="upload.php">
  30. <input type="submit" value="Add" />
  31. <input name="words" />
  32. </form>
  33. <a style="margin-top: 8px; color:#E2E2E2;"href="logout.php">Log out</a>
  34. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement