-
Notifications
You must be signed in to change notification settings - Fork 1
/
greske222.php
72 lines (61 loc) · 2.04 KB
/
greske222.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
set_error_handler('testPogreska');
function testPogreska($errno, $errstr, $errfile, $errline, $errcontext) {
if ($errstr == "Krivo ste unijeli recaptcha vrijednost"){
echo $errstr;
exit;
}
$string .="
datoteka: $errfile <br>
Linija greske: $errline <br>
Opis greske: $errstr <br>
";
echo '<html>
<head>
<title>Početna stranica</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" href="css/irepusic.css">
</head>
<body>
<header id="zaglavlje">
<img id="slika1" src="img/deliver1.jpg" alt="dostava"/>
<p class="zaglavljeP">Registracija</p>
</header>
<nav id="izbornik">
<ul>
<li><a href="registracija.php" target="_self">Registriraj se</a></li>
<li><a href="korisnici.php" target="_self">Popis korisnika</a></li>
</ul>
</nav>
<section id="sadrzaj">';
echo $string;
echo ' </section>
<footer id="podnozje">
<p> Vrijeme rjesavanja trenutne stranice: 4.00</p>
<p> Ukupno vrijeme : 9.50</p>
<div id="validacijaSlike">
<p>
<a href="http://jigsaw.w3.org/css-validator/check/referer">
<img style="border:0;width:88px;height:31px"
src="http://jigsaw.w3.org/css-validator/images/vcss"
alt="Valid CSS!" />
</a>
</p>
<p>
<img style="border:0;width:88px;height:31px"
src="img/html5.jpg"
alt="Valid CSS!" />
</p>
</div>
</footer>
<script type="text/javascript" src="js/irepusic.js" ></script>
</body>
</html>';
}
?>