Html tags checken
Door Bram Z, 24 jaar geleden, 4.442x bekeken
Dit script heb ik zelf gemaakt voor een pagina te testen of alle tags gesloten want ik vergeet dikwijls zelf mijn tags te sluiten...
je kan dit script ook aanpassen voor elke tag die er bestaad.
Voer deze sql query uit:
Code (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
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
--
-- Tabel structuur voor tabel `html_check`
--
CREATE TABLE `html_check` (
`id` int(5) NOT NULL auto_increment,
`tag_begin` varchar(255) NOT NULL default '',
`tag_end` varchar(255) NOT NULL default '',
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=9 ;
--
-- Gegevens worden uitgevoerd voor tabel `html_check`
--
INSERT INTO `html_check` VALUES (1, '<body>', '</body>');
INSERT INTO `html_check` VALUES (2, '<table>', '</table>');
INSERT INTO `html_check` VALUES (3, '<tr>', '</tr>');
INSERT INTO `html_check` VALUES (4, '<td>', '</td>');
INSERT INTO `html_check` VALUES (5, '<head>', '</head>');
INSERT INTO `html_check` VALUES (6, '<html>', '</html>');
INSERT INTO `html_check` VALUES (7, '<br>', '');
INSERT INTO `html_check` VALUES (8, '<a>', '</a>');
?>
--
-- Tabel structuur voor tabel `html_check`
--
CREATE TABLE `html_check` (
`id` int(5) NOT NULL auto_increment,
`tag_begin` varchar(255) NOT NULL default '',
`tag_end` varchar(255) NOT NULL default '',
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=9 ;
--
-- Gegevens worden uitgevoerd voor tabel `html_check`
--
INSERT INTO `html_check` VALUES (1, '<body>', '</body>');
INSERT INTO `html_check` VALUES (2, '<table>', '</table>');
INSERT INTO `html_check` VALUES (3, '<tr>', '</tr>');
INSERT INTO `html_check` VALUES (4, '<td>', '</td>');
INSERT INTO `html_check` VALUES (5, '<head>', '</head>');
INSERT INTO `html_check` VALUES (6, '<html>', '</html>');
INSERT INTO `html_check` VALUES (7, '<br>', '');
INSERT INTO `html_check` VALUES (8, '<a>', '</a>');
?>
Gesponsorde koppelingen
PHP script bestanden
Er zijn 29 reacties op 'Html tags checken'
Om te reageren heb je een account nodig en je moet ingelogd zijn.
PHP hulp
0 seconden vanaf nu