-
Notifications
You must be signed in to change notification settings - Fork 5
/
test3.php
51 lines (48 loc) · 1.45 KB
/
test3.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Test 3</title>
</head>
<style type="text/css">
body { font-family:Verdana, Geneva, Arial, Helvetica, sans-serif; font-size:12px; }
</style>
<body>
<?php
include('parser.php');
$parser = new CssParser();
if(!empty($_POST['file'])){
$parser->load_files($_POST['file']);
$parser->parse();
}
?>
<h1>Mach dich nützlich!</h1>
<ol>
<li>Gib in das Textfeld Urls zu CSS-Dateien ein, mehrere durch ; getrennt</li>
<li>Button anklicken, Output checken</li>
<li>Falls der Output Schrott ist, <a href="http://github.com/SirPepe/CSS-Parser/issues">Bescheid geben</a></li>
</ol>
<small>Fortgeschrittene dürfen sich auch gerne an einigermaßen unsauberem CSS versuchen</small>
<table cellpadding="16">
<tr>
<td valign="top">
<h2>Zerlegt</h2>
<pre><?php print_r($parser->parsed); ?></pre>
</td>
<td valign="top">
<h2>Zusammengesetzt</h2>
<pre><?php echo $parser->glue(); ?></pre>
</td>
<td valign="top">
<h2>Original</h2>
<pre><?php echo $parser->css; ?></pre>
</td>
</tr>
</table>
<form method="post" action="test3.php">
<input type="text" name="file" value="<?php if(!empty($_POST['file'])){ echo $_POST['file']; } else { echo 'test.css;test2.css;http://abmahnr.de/style.css'; } ?>">
<br>
<input type="submit" value="Klickst du hier">
</form>
</body>
</html>