-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.php
More file actions
35 lines (30 loc) · 815 Bytes
/
example.php
File metadata and controls
35 lines (30 loc) · 815 Bytes
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
<html>
<head>
<title>PRG-Pattern - PHP Demo</title>
<script src="js/jquery.min.js"></script>
<link rel="stylesheet" href="css/prg.css" type="text/css"/>
</head>
<body>
<ul>
<li>
<a href="example.html">First Link to static demo</a>
</li>
<li>
<?php
require_once('libs/prglib.php');
echo(createPRGTag('http://localhost/example.php','saltvalue','Secound Link as PRG-Pattern',''));
?>
</li>
</ul>
<!-- PRG-Form Start -->
<span class="prgform" style="display:none">
<form action="/prg.php" method="post" id="prgform">
<input>
<input type="hidden" id="prgu" name="u" value="">
<input type="hidden" id="prgh" name="h" value="">
</form>
</span>
<!-- PRG-Form End -->
<script src="js/prgs.js"></script>
</body>
</html>