-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtitletest.php
More file actions
28 lines (27 loc) · 756 Bytes
/
titletest.php
File metadata and controls
28 lines (27 loc) · 756 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
<html><body><table><tr><th>Title</th><th>URL</th></tr>
<?php
include('titlegenerator.php');
$title = array(
'This is a great title, and I feel absolutely great about it!',
'_____________________________________',
'`1398 5;a ;l \"||{#)) <<>#"#"%":%"":":AA',
'Copy-paste',
'Copy-paste',
'Copy-paste',
'\\\\\\\\\\\\\\////////////////',
'A regular title',
'atitlebyareallybadop',
'123',
'',
'hello . ! world!'
);
foreach($title as $t) {
?>
<tr>
<td><?php echo $t; ?></td>
<td><?php echo titlegenerator::cleanurl($t); ?></td>
</tr>
<?php
}
?>
</table></body></html>