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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
|
<!DOCTYPE html> <html> <head> <title>GRID TIP</title> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Piwik --> <script type="text/javascript"> var _paq = _paq || []; /* tracker methods like "setCustomDimension" should be called before "trackPageView" */ _paq.push(['trackPageView']); _paq.push(['enableLinkTracking']); (function() { var u="//mamnaslim.dsmynas.net/piwik/"; _paq.push(['setTrackerUrl', u+'piwik.php']); _paq.push(['setSiteId', '1']); var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s); })(); </script> <!-- End Piwik Code -->
<style type="text/css">
#menu__toggle { opacity: 0; } #menu__toggle:checked + .menu__btn > span { transform: rotate(45deg); } #menu__toggle:checked + .menu__btn > span::before { top: 0; transform: rotate(0deg); } #menu__toggle:checked + .menu__btn > span::after { top: 0; transform: rotate(90deg); } #menu__toggle:checked ~ .menu__box { left: 0 !important; } .menu__btn { position: fixed; top: 20px; left: 20px; width: 26px; height: 26px; cursor: pointer; z-index: 1; } .menu__btn > span, .menu__btn > span::before, .menu__btn > span::after { display: block; position: absolute; width: 100%; height: 2px; background-color: #616161; transition-duration: .25s; } .menu__btn > span::before { content: ''; top: -8px; } .menu__btn > span::after { content: ''; top: 8px; } .menu__box { display: block; position: fixed; top: 0; left: -100%; width: 300px; height: 100%; margin: 0; padding: 40px 0; list-style: none; background-color: #ECEFF1; box-shadow: 2px 2px 6px rgba(0, 0, 0, .4); transition-duration: .25s; overflow: auto; } .menu__item { display: block; padding: 12px 24px; color: #333; font-family: Arial, sans-serif; font-size: 18px; font-weight: 400; text-decoration: none; transition-duration: .25s; } .menu__item:hover { background-color: #CFD8DC; text-decoration: none; } .menu__home { position: fixed; top: 7px; right: 17px; }
.leaderboard { // column-count: 3; // column-gap: 10px; column-count: auto; column-width: 10rem; } ol, li { list-style-type: 1; margin: 0; padding: 0; }
// Mode Buttons Styles Start
.btn-container { display: flex; gap: 10px; padding: 20px; } .btn { padding: 6px 16px; background-color: #999999; border: none; border-radius: 25px; cursor: pointer; font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: normal; color: white; text-decoration: none; transition: background-color 0.2s ease; margin-bottom: 8px; }
.btn:hover { background-color: #666666; }
.btn.active { background-color: #1c7cd6; }
#mode-display { margin-top: 0px; font-size: 20px; font-weight: bold; color: #333; // min-height: 40px;
// Mode Buttons Styles End
</style>
<style>
body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background: #fff; color: #111; // min-height: 200vh; }
/* ── HEADER ── */ .rb-header { position: static; top: 0; background: #fff; box-shadow: none; }
.rb-inner { max-width: 1280px; margin: 0 auto; padding: 0px 18px; min-height: 56px; height: auto; display: flex; justify-content: center; align-items: center; gap: 10px; }
/* ── LOGO ── */ .rb-logo { display: flex; align-items: center; flex-shrink: 0; margin-right: 4px; text-decoration: none; transition: opacity .15s; } .rb-logo:hover { opacity: .75; }
/* ══════════════════════════════════════════════════════ NAV LIST — the whole strip is one hellgrauer Pill-Block ══════════════════════════════════════════════════════ */ .rb-list { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; list-style: none; background: #ebebeb; border-radius: 999px; padding: 0; gap: 0; }
.rb-item { position: relative; }
/* ── individual pill: transparent bg by default, fills on hover/open ── */ .rb-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 15px; border-radius: 999px; background: transparent; /* invisible inside the block */ color: #1a1a1a; font-family: inherit; font-size: 13.5px; font-weight: 700; /* ← fett */ letter-spacing: .01em; white-space: nowrap; text-decoration: none; cursor: pointer; border: none; outline: none; transition: background .13s; line-height: 1; -webkit-font-smoothing: antialiased; }
.rb-pill:hover, .rb-item.open > .rb-pill { background: #d0d0d0; /* mittelgrau */ }
/* Chevron */ .rb-pill .chev { display: inline-block; width: 7px; height: 7px; border-right: 2px solid #555; border-bottom: 2px solid #555; transform: rotate(45deg) translateY(-1.5px); transition: transform .18s, border-color .13s; flex-shrink: 0; } .rb-item.open > .rb-pill .chev { transform: rotate(225deg) translateY(1.5px); border-color: #222; }
/* ── DROPDOWN ── */ .rb-dropdown { position: absolute; top: calc(100% + 8px); left: 0; background: #fff; border: 1px solid rgba(0,0,0,0.10); border-radius: 14px; box-shadow: 0 8px 28px rgba(0,0,0,0.12); min-width: 215px; padding: 0px; opacity: 0; pointer-events: none; transform: translateY(-5px) scale(.98); transform-origin: top left; transition: opacity .15s ease, transform .15s ease; z-index: 8999; }
.rb-item.open > .rb-dropdown { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }
.rb-dropdown a { display: block; padding: 9px 14px; color: #222; text-decoration: none; font-size: 13.5px; font-weight: 600; text-align: left; border-radius: 0; /* ← Grundregel: keine Rundungen */ transition: background .11s; white-space: nowrap; }
/* Erster Eintrag: nur oben abgerundet */ .rb-dropdown a:first-child { border-radius: 9px 9px 0 0; }
/* Letzter Eintrag: nur unten abgerundet */ .rb-dropdown a:last-child { border-radius: 0 0 9px 9px; }
/* Hover-Farbe bleibt für alle gleich */ .rb-dropdown a:hover { background: #ebebeb; }
/* ── RIGHT CONTROLS ── */ .rb-right { display: flex; align-items: center; gap: 5px; margin-left: auto; flex-shrink: 0; }
.rb-icon-btn { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 999px; background: #ebebeb; border: none; cursor: pointer; color: #333; transition: background .13s; } .rb-icon-btn:hover { background: #d0d0d0; } .rb-icon-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.rb-region { display: inline-flex; align-items: center; gap: 5px; padding: 7px 14px; border-radius: 999px; background: #ebebeb; color: #1a1a1a; font-family: inherit; font-size: 13px; font-weight: 700; letter-spacing: .04em; cursor: pointer; border: none; transition: background .13s; } .rb-region:hover { background: #d0d0d0; }
/* ── OVERLAY ── */ #rb-overlay { display: none; position: fixed; inset: 0; z-index: 8998; } #rb-overlay.active { display: block; }
</style>
</head>
<body bgcolor="#FFFFFF" text="#000000" link='#000000' alink='#000000' vlink='#000000'>
<link href="shoutbox/style.css" rel="stylesheet" type="text/css" />
<div class="hamburger-menu"> <input id="menu__toggle" type="checkbox" /> <label class="menu__btn" for="menu__toggle"> <span></span> </label>
<ul class="menu__box"> <li><h1> GRID TIP</h></li>
<li><a class="menu__item" href="login.php" target="mainFrame">Login</a></li> <li><a class="menu__item" href="tipsresults.php" target="mainFrame">Tips & Results</a></li> <li><a class="menu__item" href="schedule.php" target="mainFrame">Schedule</a></li> <li><a class="menu__item" href="rules.php" target="mainFrame">Rules</a></li> <li><a class="menu__item" href="members.php" target="mainFrame">Members List</a></li> <li><a class="menu__item" href="halloffame.php" target="mainFrame">Hall of Fame</a></li> <li><a class="menu__item" href="statistics.php" target="mainFrame">Statistics</a></li> <li><a class="menu__item" href="archive.php" target="mainFrame">Archive</a></li> <li><a class="menu__item" href="../gridtip_2025/" target="_blank">Last Season</a></li> <li><a class="menu__item" href="https://median.co/share/molnwl#apk" target="_blank">App</a></li> <li><a class="menu__item" href="admin/admin.html" target="mainFrame">Admin</a></li> <li><a class="menu__item" href="impressum_en.php" target="mainFrame">Legal Notice</a></li> </ul>
<div class="menu__home"> <a href="gridtip.php" target="mainFrame"><img src="images/home.png" width="32" height="28"></a> </div>
</div>
<div id="rb-overlay"></div>
<header class="rb-header"> <div class="rb-inner">
<!-- Nav list — one unified pill block --> <ul class="rb-list" id="rb-nav">
<li class="rb-item"> <form action="https://www.paypal.com/donate" method="post" target="_blank" style="margin:0; padding:0;"> <input type="hidden" name="business" value="PMXYBUCUJHJXW" /> <input type="hidden" name="no_recurring" value="0" /> <input type="hidden" name="item_name" value="Your voluntary donation to support GRID TIP" /> <input type="hidden" name="currency_code" value="EUR" /> <button type="submit" class="rb-pill">Donate</button> <img alt="" border="0" src="https://www.paypal.com/en_AT/i/scr/pixel.gif" width="1" height="1" /> </form> </li>
<li class="rb-item"> <a href="tracklist/" target="_blank" class="rb-pill">Track List</a> </li> <!-- <li class="rb-item"> <a href="gridviz/" target="_blank" class="rb-pill">Live & Replay Timing</a> </li>
<li class="rb-item"> <a href="trackviz/" target="_blank" class="rb-pill">Performance Analytics</a> </li> --> <li class="rb-item"> <a href="gridlist/" target="_blank" class="rb-pill">Results Gatherer</a> </li>
<li class="rb-item" data-dropdown> <button class="rb-pill" aria-haspopup="true" aria-expanded="false">Tools<span class="chev" aria-hidden="true"></span> </button> <div class="rb-dropdown" role="menu"> <a href="gridviz/" target="_blank" role="menuitem">Live & Replay Timing</a> <a href="trackviz/index.html"" target="_blank" role="menuitem">Performance Analytics</a> </div> </li>
</ul>
</div> </header>
<script> (() => { const overlay = document.getElementById('rb-overlay'); const dropItems = [...document.querySelectorAll('[data-dropdown]')];
// Small delay so moving mouse between trigger and dropdown doesn't close it let closeTimer = null;
function openItem(item) { clearTimeout(closeTimer); dropItems.forEach(el => { if (el !== item) { el.classList.remove('open'); el.querySelector('button')?.setAttribute('aria-expanded', 'false'); } }); item.classList.add('open'); item.querySelector('button')?.setAttribute('aria-expanded', 'true'); overlay.classList.add('active'); }
function scheduleClose() { closeTimer = setTimeout(closeAll, 120); }
function closeAll() { dropItems.forEach(el => { el.classList.remove('open'); el.querySelector('button')?.setAttribute('aria-expanded', 'false'); }); overlay.classList.remove('active'); }
dropItems.forEach(item => { const btn = item.querySelector('button.rb-pill'); const dropdown = item.querySelector('.rb-dropdown');
// ── Hover opens / hover-leave schedules close ── item.addEventListener('mouseenter', () => openItem(item)); item.addEventListener('mouseleave', scheduleClose); dropdown.addEventListener('mouseenter', () => clearTimeout(closeTimer)); dropdown.addEventListener('mouseleave', scheduleClose);
// ── Click still toggles (accessibility / touch) ── btn.addEventListener('click', () => { if (item.classList.contains('open')) { closeAll(); } else { openItem(item); } });
btn.addEventListener('keydown', e => { if (e.key === 'Escape') closeAll(); }); });
overlay.addEventListener('click', closeAll); document.addEventListener('keydown', e => { if (e.key === 'Escape') closeAll(); }); })(); </script>
<br>
<table width="80%" border="0" align="center"> <tr> <td width="60%" align="center"><font face="Arial, Helvetica, sans-serif" size="6"><b>Leaderboard</b></font></td> <td width="40%" align="center"><font face="Arial, Helvetica, sans-serif" size="6"><b>Shoutbox</b></font></td> </tr> <tr> <td width="60%" align="center"><font face="Arial, Helvetica, sans-serif" size="3"><BR>
<div class="btn-container"> <!-- Add 'active' class to Button 1 by default --> <button class="btn active" onclick="showNormalMode()"> Normal Mode </button> <button class="btn" onclick="showNostradamusMode()">Nostradamus Mode</button> </div>
</font></td> <td width="40%" align="center"><font face="Arial, Helvetica, sans-serif" size="3"><BR> </font></td> </tr> <tr> <td width="60%" valign="top"><div align="center"><font face="Arial, Helvetica, sans-serif" size="5"><br>Overall score (and won GP weekends score in brackets)<br><br></font></div>
<?php require("dbconnect.php"); dbconnect(); ?>
<div id="leaderboard-normal" class="leaderboard" style="display:block" align="left">
<?php $created = mysql_query("create table temp_score as select t_g_id,t_u_Id,sum(t_score) t_score from tips where t_g_id < 100 group by t_g_id,t_u_id;"); $created = mysql_query("create table temp_max_score as select t_g_id,max(t_score) t_max_score from temp_score group by t_g_id;"); // $created=mysql_query("create table temp_g_u as select ts.t_g_id,ts.t_u_id,ms.t_max_score from temp_score ts,temp_max_score ms where ts.t_g_id=ms.t_g_id and ts.t_score=ms.t_max_score group by ts.t_g_id having count(*)=1 and ms.t_max_score>0;"); $created = mysql_query("create table temp_g_u as select ts.t_g_id,ts.t_u_id,ms.t_max_score from temp_score ts,temp_max_score ms where ts.t_g_id=ms.t_g_id and ts.t_score=ms.t_max_score and ms.t_max_score>0;"); $created = mysql_query("create table temp_coffees as select t_u_id,count(*) t_coffees from temp_g_u group by t_u_id");
$x = 0; $scores = mysql_query("select t.t_u_id,u_name,sum(t.t_score) points,tc.t_coffees coffees from users left join tips t on u_id=t.t_u_id and t_g_id < 100 left join temp_coffees tc on t.t_u_id=tc.t_u_id group by t.t_u_id,u_name order by points desc, coffees desc, u_name asc;"); while ($user_scores = mysql_fetch_array($scores)) { $user_names[$x] = $user_scores['u_name']; $user_points[$x] = $user_scores['points']; $user_coffees[$x] = $user_scores['coffees']; if ($user_coffees[$x] == "") $user_coffees[$x] = 0; $x = $x + 1; }
echo "<style> .ranking-list { column-width: 180px; /* Browser entscheidet Spaltenanzahl automatisch */ column-gap: 20px; column-rule: 1px solid #ccc; column-fill: auto; /* Spalten von oben nach unten füllen (nicht balancieren) */ } .ranking-list ol { margin: 0; padding-left: 20px; } .ranking-list li { margin-bottom: 20px; break-inside: avoid; font-family: Arial, Helvetica, sans-serif; font-weight: 700; font-size: 18px; color: #0099CC; } </style>";
echo "<div class='ranking-list'>"; echo "<ol type='1'>"; for ($i = 0; $i < $x; $i++) { echo "<li>" . htmlspecialchars($user_names[$i]) . ": <span style='color:#FF0000;'>" . $user_points[$i] . " (" . $user_coffees[$i] . ")</span></li>"; } echo "</ol>"; echo "</div>";
$deleted = mysql_query("drop table temp_score;"); $deleted = mysql_query("drop table temp_max_score;"); $deleted = mysql_query("drop table temp_g_u;"); $deleted = mysql_query("drop table temp_coffees;"); ?>
</div>
<div id="leaderboard-nostradamus" class="leaderboard" style="display:none" align="left">
<?php $created=mysql_query("create table temp_score as select t_g_id,t_u_Id,sum(t_score) t_score from tips where t_g_id = 100 group by t_g_id,t_u_id;");
$x=0;
$scores=mysql_query("select t.t_u_id,u_name,sum(t.t_score) points from users left join tips t on u_id=t.t_u_id and t_g_id = 100 group by t.t_u_id,u_name order by points desc, u_name asc;");
while ($user_scores=mysql_fetch_array($scores)){ $user_names[$x]=$user_scores['u_name']; $user_points[$x]=$user_scores['points']; $x=$x+1; }
echo "<style> .nos-ranking-list { column-width: 180px; /* Browser entscheidet Spaltenanzahl automatisch */ column-gap: 20px; column-rule: 1px solid #ccc; column-fill: auto; /* Spalten von oben nach unten füllen (nicht balancieren) */ } .nos-ranking-list ol { margin: 0; padding-left: 20px; } .nos-ranking-list li { margin-bottom: 20px; break-inside: avoid; font-family: Arial, Helvetica, sans-serif; font-weight: 700; font-size: 18px; color: #6d9bc3; } </style>";
echo "<div class='nos-ranking-list'>"; echo "<ol type='1'>";
$j=0; for ($i=0;$i<$x;$i++) {
echo "<li>" . htmlspecialchars($user_names[$i]) . ": <span style='color:#FF0000'>" . $user_points[$i] . "</span></li>";
$j=$j+1; } echo "</ol>";
$deleted=mysql_query("drop table temp_score;"); ?>
</div>
<script> const buttons = document.querySelectorAll('.btn');
buttons.forEach(button => { button.addEventListener('click', (e) => { e.preventDefault(); // Remove active class from all buttons buttons.forEach(btn => btn.classList.remove('active')); // Add active class to clicked button button.classList.add('active'); }); }); </script>
<script> // Initial setup on page load // window.onload = function() { // document.getElementById('leaderboard-normal').style.display = 'block'; // document.getElementById('leaderboard-nostradamus').style.display = 'none'; // };
function showNormalMode() { document.getElementById('leaderboard-normal').style.display = 'block'; document.getElementById('leaderboard-nostradamus').style.display = 'none'; }
function showNostradamusMode() { document.getElementById('leaderboard-normal').style.display = 'none'; document.getElementById('leaderboard-nostradamus').style.display = 'block'; }
</script>
</td> <td width="40%" valign="top" align="center"><br><br>
<?php // Glens shoutbox script using files and sessions ?> <table width="300" border="0" bordercolor="#000000" cellpadding="0" cellspacing="0"> <tr> <td bgcolor="#CCCCCC"> <p><div align="center"><IFRAME SRC="shoutbox/shouts.php" WIDTH=94% HEIGHT=250 scrolling=auto frame-border=0></IFRAME></div></p> </td> </tr> <tr> <td bgcolor="#99CCFF"> <form id="shoutbox" name="shoutbox" method="post" action=""> <br> <font face="Arial, Helvetica, sans-serif" size="3"> <b> Name:<br><br> <div align="center"><input name="name" type="text" id="name" size="35" maxlength="50"></div> <br> Message:<br><br> <div align="center"><input name="message" type="text" id="message" size="35" maxlength="500"></div></b></font> <br> <p align="center"> <input type="submit" id="shout" name="shout" value="." class="submit"><br><br><a href="<?php echo $_SERVER['PHP_SELF']; ?>"><font size="2"><b>refresh</b></font></a> </p> </form> </td> </tr> </table> <?php
// Start coding new entrys on post
if ($_POST['shout']) {
$file = "shoutbox/shouts.html"; $handle = fopen($file, "a") or die ("Cant open file"); $message = $_POST['message']; $message = htmlentities($message); $name = $_POST['name']; $name = htmlentities($name); $date = date("Y-m-d - H:i:s");
$name_l = strlen($name); $message_l = strlen($message); $nl = chr(13) . chr(10);
if ($name_1 > 50) { echo "<span class='error'>Name must be less than 50</span>"; //exit; } if ($message_1 > 500) { echo "<span class='error'>Message must be less than 500</span>"; //exit; }
if ($name == '') { echo "<span class='error'>You must enter a name</span><br>"; //exit; }else{ $true++; } if ($message == '') { echo "<span class='error'>You must enter a message</span><br>"; //exit; }else{ $true++; if ($name == "name") { echo "<span class='error'>You must enter your name</span><br>"; //exit; } if ($message == "message") { echo "<span class='error'>You must enter a message</span><br>"; //exit; //if ($name == "name" and $message == "message") { //echo "Please enter your name and message"; //exit; //} } } if ($true == 2) {
$data = "<span class='first'>$date</span><br><span class='second'>$name:</span><br><span class='third'>$message</span><br><br>$nl"; fwrite ($handle, $data) or die ("Cant write new message"); fclose($handle); //echo '<meta http-equiv="Refresh" content="0">'; } }
?> </td> </tr> </table>
<br>
<div align='center'><font face='Arial, Helvetica, sans-serif' size='3'>© 2023-2026 - GRID TIP</font></div>
</body> </html>
|