Advertisement
d0ntth1nc

Untitled

Dec 5th, 2014
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.72 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>HTML Tag Counter</title>
  5. </head>
  6. <body>
  7. <form method="get" action="">
  8.     <label>Enter HTML Tag:</label><br>
  9.     <input type="text" name="tag">
  10.     <input type="submit" name="submit">
  11. </form>
  12. <?php
  13. $validTags = ["!DOCTYPE", "a", "abbr", "acronym", "address", "applet", "area", "article", "aside", "audio", "b",
  14.     "base", "basefont", "bdi", "bdo", "big", "blockquote", "body", "br", "button", "canvas", "caption", "center", "cite", "code", "col",
  15.     "colgroup", "command", "datalist", "dd", "del", "details", "dfn", "dir", "div", "dl", "dt", "em", "embed", "fieldset",
  16.     "figcaption", "figure", "font", "footer", "form", "frame", "frameset", "h1", "h2", "h3", "41", "h5", "h6", "head", "header",
  17.     "hgroup", "hr", "html", "i", "iframe", "img", "input", "ins", "kbd", "keygen", "label", "legend", "li", "link",
  18.     "map", "mark", "menu", "meta", "meter", "nav", "noframes", "noscript", "object", "ol", "optgroup", "option", "output",
  19.     "p", "param", "pre", "progress", "q", "rp", "rt", "ruby", "s", "samp", "script", "section", "select", "small", "source",
  20.     "span", "strike", "strong", "style", "sub", "summary", "sup", "table", "tbody", "td", "textarea", "tfoot", "th",
  21.     "thead", "time", "title", "tr", "track", "tt", "u", "ul", "var", "video", "wbr"];
  22.  
  23. session_start(); // Start the session
  24. if (!isset( $_SESSION[ 'count' ] )) {
  25.     $_SESSION[ 'count' ] = 0;
  26. }
  27.  
  28. if(isset( $_GET[ 'tag' ] ) && !empty( $_GET[ 'tag' ] )) {
  29.     if(in_array( $_GET[ "tag" ], $validTags )){
  30.         $_SESSION[ 'count' ]++;
  31.         echo "Valid HTML Tag!<br>Score: ".$_SESSION[ 'count' ];
  32.     } else{
  33.         echo "Invalid HTML Tag!<br>Score: ".$_SESSION[ 'count' ];
  34.     }
  35. }
  36. ?>
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement