Guest User

Untitled

a guest
Jan 22nd, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. --------HTML PAGE THROUGH DYNAMIC LOADING--------------------
  2.  
  3. <html>
  4. <head>
  5. </head>
  6. <body>
  7. <!-- MAIN PAGE TABLE -->
  8. <center><table border="1" width="100%" cellspacing="5" cellpadding="8" bgcolor="black" cols="5"><font size="6" face="verdana" color="green"><i>
  9. <tr><td><center><a href="199.419.9.419?p=index"><font color=Green>Home</font></a></center></td>
  10. <td><a href="199.419.9.419?p=aas"><font color=Green>All about Steve</font></a></td>
  11. <td>Guitars</td>
  12. <td>Comment</td>
  13. <td>Song of the Day</td></tr>
  14. <tr><td><center><b><i><font size="5" color="white">Links</font></i></b></center></td>
  15. <td align="center" rowspan="5" colspan="4"><font color="white" size="5"><th>MAIN INFO GOES HERE<</h></font></td>
  16. <tr><td><a href="123.749.8.840"><font size ="4" color="Red"><center>Ltlwinter's Site</center></font></a></td></tr>
  17. <tr><td><a href="126.088.8.148"><font size ="4" color="Purple"><center>Khmauv's Site</center></font></a></td></tr>
  18. <tr><td><a href="244.253.6.015"><font size ="4" color="Blue"><center>Aoi's Site</center></font></a></td></tr>
  19. <tr><td><a href="241.229.7.055"><font size ="4" color="Yellow"><center>Jagjr's Site</center></font></a></td></tr>
  20. </tr></table></center>
  21.  
  22. <?content?>
  23. </body>
  24. </html>
  25.  
  26. -------HTTP--------
  27. // Apache v1 by Dllfile
  28. int main() {
  29. // Gets the value of p to determine
  30. // which file to look for.
  31. string p = fetchGetVariable("p");
  32. // Takes care of first page load
  33. // Defaults the page to index
  34. // if page is not defined.
  35. if (p == "") {
  36. p = "index";
  37. }
  38. // Can replace if you like or keep
  39. // the naming convention. file.html
  40. p = "Web/" + p + ".html";
  41. // Replaces <?content?> in your site
  42. // template with the contents of the
  43. // file being loaded.
  44. replaceContent("content", readFile(p));
  45. }
  46.  
  47. NOTHING HARD REALLY I WANT TO GET IT SIMPLE THEN ADD ONTO IT
Add Comment
Please, Sign In to add comment