-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patherror_log.dms
More file actions
2603 lines (2603 loc) · 509 KB
/
error_log.dms
File metadata and controls
2603 lines (2603 loc) · 509 KB
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
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[16-Mar-2018 21:53:47 UTC] PHP Parse error: syntax error, unexpected 'http' (T_STRING), expecting ',' or ';' in /home/homenowproject/public_html/developer.php on line 7
[16-Mar-2018 21:53:52 UTC] PHP Parse error: syntax error, unexpected 'http' (T_STRING), expecting ',' or ';' in /home/homenowproject/public_html/developer.php on line 7
[16-Mar-2018 21:55:09 UTC] PHP Parse error: syntax error, unexpected 'http' (T_STRING), expecting ',' or ';' in /home/homenowproject/public_html/developer.php on line 7
[16-Mar-2018 21:55:28 UTC] PHP Parse error: syntax error, unexpected 'http' (T_STRING), expecting ',' or ';' in /home/homenowproject/public_html/developer.php on line 7
[17-Mar-2018 16:32:38 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/homenowproject/public_html/developer.php:98) in /home/homenowproject/public_html/developer.php on line 104
[17-Mar-2018 16:34:12 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/homenowproject/public_html/developer.php:98) in /home/homenowproject/public_html/developer.php on line 105
[17-Mar-2018 16:34:57 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/homenowproject/public_html/developer.php:98) in /home/homenowproject/public_html/developer.php on line 105
[17-Mar-2018 16:35:11 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/homenowproject/public_html/developer.php:98) in /home/homenowproject/public_html/developer.php on line 105
[17-Mar-2018 16:35:59 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/homenowproject/public_html/developer.php:98) in /home/homenowproject/public_html/developer.php on line 105
[17-Mar-2018 16:36:21 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/homenowproject/public_html/developer.php:98) in /home/homenowproject/public_html/developer.php on line 104
[17-Mar-2018 16:37:07 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/homenowproject/public_html/developer.php:98) in /home/homenowproject/public_html/developer.php on line 104
[17-Mar-2018 18:26:30 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/homenowproject/public_html/developer.php:98) in /home/homenowproject/public_html/developer.php on line 104
[17-Mar-2018 18:29:25 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/homenowproject/public_html/developer.php:98) in /home/homenowproject/public_html/developer.php on line 104
[26-Mar-2018 15:48:32 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 11
[26-Mar-2018 15:49:06 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 11
[26-Mar-2018 15:49:33 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 11
[26-Mar-2018 15:53:01 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 11
[26-Mar-2018 15:53:02 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 43
[26-Mar-2018 15:53:28 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 11
[26-Mar-2018 15:54:13 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 11
[26-Mar-2018 15:54:13 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 536
[26-Mar-2018 16:50:41 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 11
[26-Mar-2018 16:50:41 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 536
[26-Mar-2018 16:51:23 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 11
[26-Mar-2018 16:51:23 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 536
[26-Mar-2018 16:51:49 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 11
[26-Mar-2018 16:51:49 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 536
[26-Mar-2018 16:55:15 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 132
[26-Mar-2018 16:55:57 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 133
[26-Mar-2018 16:55:57 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 658
[26-Mar-2018 16:56:00 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 133
[26-Mar-2018 16:59:55 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 132
[26-Mar-2018 16:59:55 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 695
[26-Mar-2018 17:06:18 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 132
[26-Mar-2018 17:06:18 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 168
[26-Mar-2018 18:16:52 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 132
[26-Mar-2018 18:16:52 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 168
[26-Mar-2018 18:17:00 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 132
[26-Mar-2018 18:17:00 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 191
[26-Mar-2018 18:17:12 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 132
[26-Mar-2018 18:17:12 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 218
[26-Mar-2018 18:17:16 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 132
[26-Mar-2018 18:17:16 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 242
[26-Mar-2018 18:17:21 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 132
[26-Mar-2018 18:17:27 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 132
[26-Mar-2018 18:19:47 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 132
[26-Mar-2018 18:19:47 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 194
[26-Mar-2018 18:20:02 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 132
[26-Mar-2018 18:20:02 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 544
[26-Mar-2018 18:20:21 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 132
[26-Mar-2018 18:20:21 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 714
[26-Mar-2018 18:20:33 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 132
[26-Mar-2018 18:20:34 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 194
[26-Mar-2018 18:20:43 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 132
[26-Mar-2018 18:20:43 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 714
[26-Mar-2018 18:25:48 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 132
[26-Mar-2018 18:25:48 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 364
[26-Mar-2018 18:25:58 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 132
[26-Mar-2018 18:25:58 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 731
[26-Mar-2018 18:26:11 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 132
[26-Mar-2018 18:26:44 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 132
[26-Mar-2018 18:26:44 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 693
[26-Mar-2018 18:27:15 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 132
[26-Mar-2018 18:27:15 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 333
[26-Mar-2018 18:27:28 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 132
[26-Mar-2018 18:27:44 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 132
[26-Mar-2018 18:27:44 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 693
[26-Mar-2018 18:28:16 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 132
[26-Mar-2018 18:28:16 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 693
[26-Mar-2018 18:28:45 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 132
[26-Mar-2018 18:29:12 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 132
[26-Mar-2018 18:29:12 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 693
[26-Mar-2018 18:36:06 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 132
[26-Mar-2018 18:36:50 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 132
[26-Mar-2018 18:36:50 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 603
[26-Mar-2018 18:37:07 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 132
[26-Mar-2018 18:37:07 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 805
[26-Mar-2018 18:47:51 UTC] PHP Parse error: syntax error, unexpected 'ehco' (T_STRING) in /home/homenowproject/public_html/action.php on line 131
[26-Mar-2018 18:51:41 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 134
[26-Mar-2018 18:51:41 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 256
[26-Mar-2018 18:52:23 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 134
[26-Mar-2018 18:52:23 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/homenowproject/public_html/action.php:129) in /home/homenowproject/public_html/action.php on line 462
[26-Mar-2018 18:52:23 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 463
[26-Mar-2018 18:53:02 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 134
[26-Mar-2018 18:53:02 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 945
[26-Mar-2018 18:53:14 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 134
[26-Mar-2018 18:53:14 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 945
[26-Mar-2018 18:54:40 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 134
[26-Mar-2018 18:55:01 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 134
[26-Mar-2018 18:55:01 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/homenowproject/public_html/action.php:129) in /home/homenowproject/public_html/action.php on line 462
[26-Mar-2018 18:55:01 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 463
[26-Mar-2018 19:01:42 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 134
[26-Mar-2018 19:01:42 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 944
[26-Mar-2018 19:05:10 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 145
[26-Mar-2018 19:07:27 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[26-Mar-2018 19:07:27 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 824
[26-Mar-2018 19:07:56 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[26-Mar-2018 19:07:56 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 187
[26-Mar-2018 19:08:15 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[26-Mar-2018 19:08:15 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 824
[26-Mar-2018 19:09:59 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[26-Mar-2018 19:09:59 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 824
[26-Mar-2018 19:10:07 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[26-Mar-2018 19:10:07 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 187
[26-Mar-2018 19:10:23 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[26-Mar-2018 19:10:23 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 824
[26-Mar-2018 19:10:42 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[26-Mar-2018 19:10:42 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 824
[26-Mar-2018 19:11:05 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[26-Mar-2018 19:11:06 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 824
[26-Mar-2018 19:11:15 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[26-Mar-2018 19:11:15 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 187
[26-Mar-2018 19:11:33 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[26-Mar-2018 19:11:33 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 824
[26-Mar-2018 19:12:15 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[26-Mar-2018 19:12:15 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 824
[26-Mar-2018 19:13:19 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[26-Mar-2018 19:13:19 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 824
[26-Mar-2018 19:14:13 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[26-Mar-2018 19:14:14 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 824
[26-Mar-2018 19:18:30 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 145
[26-Mar-2018 19:18:30 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 820
[26-Mar-2018 19:18:54 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 145
[26-Mar-2018 19:18:54 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 820
[26-Mar-2018 19:20:09 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 146
[26-Mar-2018 19:20:09 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 821
[26-Mar-2018 19:20:43 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 146
[26-Mar-2018 19:20:43 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 821
[26-Mar-2018 19:22:20 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 146
[26-Mar-2018 19:22:20 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 821
[26-Mar-2018 19:24:12 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 145
[26-Mar-2018 19:24:12 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 820
[26-Mar-2018 19:25:13 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 145
[26-Mar-2018 19:25:13 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 821
[26-Mar-2018 19:27:21 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 147
[26-Mar-2018 19:27:21 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 823
[26-Mar-2018 19:27:45 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 147
[26-Mar-2018 19:27:45 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 823
[26-Mar-2018 19:28:30 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[26-Mar-2018 19:28:30 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 824
[26-Mar-2018 19:28:48 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[26-Mar-2018 19:28:48 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 824
[26-Mar-2018 19:29:47 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 149
[26-Mar-2018 19:29:47 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 825
[26-Mar-2018 19:30:13 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 149
[26-Mar-2018 19:30:13 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 825
[26-Mar-2018 19:32:42 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 147
[26-Mar-2018 19:32:42 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 823
[26-Mar-2018 19:34:55 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 154
[26-Mar-2018 19:34:55 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 830
[26-Mar-2018 19:35:29 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 154
[26-Mar-2018 19:35:29 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 831
[26-Mar-2018 19:36:01 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 154
[26-Mar-2018 19:36:01 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 831
[26-Mar-2018 19:43:09 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 154
[26-Mar-2018 19:43:09 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 875
[26-Mar-2018 19:43:45 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 154
[26-Mar-2018 19:43:46 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 929
[26-Mar-2018 19:45:50 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 154
[26-Mar-2018 19:45:50 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 968
[26-Mar-2018 19:46:17 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 154
[26-Mar-2018 19:46:55 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 154
[26-Mar-2018 19:47:22 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 154
[26-Mar-2018 19:47:56 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 154
[26-Mar-2018 19:48:07 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 154
[26-Mar-2018 19:48:07 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 154
[26-Mar-2018 19:48:15 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 154
[26-Mar-2018 19:49:30 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 154
[26-Mar-2018 19:49:30 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 968
[26-Mar-2018 19:49:35 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 154
[26-Mar-2018 19:49:35 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 193
[26-Mar-2018 19:50:13 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 154
[26-Mar-2018 19:52:46 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 154
[26-Mar-2018 19:53:04 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 154
[26-Mar-2018 19:53:10 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 154
[26-Mar-2018 19:57:58 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 154
[26-Mar-2018 19:58:08 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 154
[26-Mar-2018 19:58:08 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 832
[26-Mar-2018 20:01:34 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 154
[26-Mar-2018 20:01:34 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 832
[26-Mar-2018 20:02:21 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 152
[26-Mar-2018 20:02:21 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 830
[26-Mar-2018 20:03:39 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 153
[26-Mar-2018 20:03:39 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 831
[26-Mar-2018 20:04:11 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 152
[26-Mar-2018 20:04:11 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 830
[26-Mar-2018 20:05:54 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 154
[26-Mar-2018 20:05:54 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 832
[26-Mar-2018 20:06:36 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 154
[26-Mar-2018 20:06:36 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 219
[26-Mar-2018 20:07:11 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 154
[26-Mar-2018 20:07:11 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 832
[26-Mar-2018 20:08:41 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 149
[26-Mar-2018 20:08:42 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 827
[26-Mar-2018 20:09:41 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[26-Mar-2018 20:09:49 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[26-Mar-2018 20:09:49 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 826
[26-Mar-2018 20:11:18 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[26-Mar-2018 20:15:13 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[26-Mar-2018 20:15:27 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[26-Mar-2018 20:15:55 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[26-Mar-2018 20:16:12 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[26-Mar-2018 20:17:58 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[27-Mar-2018 01:28:23 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[27-Mar-2018 04:27:20 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[27-Mar-2018 04:28:32 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[27-Mar-2018 04:29:48 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[27-Mar-2018 04:32:11 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[27-Mar-2018 04:32:11 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 924
[27-Mar-2018 04:58:15 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[27-Mar-2018 04:58:15 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 924
[27-Mar-2018 04:58:41 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[27-Mar-2018 04:58:41 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 963
[27-Mar-2018 04:59:40 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[27-Mar-2018 04:59:40 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1018
[27-Mar-2018 05:02:07 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[27-Mar-2018 05:03:20 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[27-Mar-2018 05:03:20 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1097
[27-Mar-2018 05:04:06 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[27-Mar-2018 05:04:06 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1057
[28-Mar-2018 19:26:17 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[28-Mar-2018 19:26:17 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 213
[28-Mar-2018 19:26:46 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[28-Mar-2018 19:26:46 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 901
[28-Mar-2018 19:27:14 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[28-Mar-2018 19:27:14 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 423
[28-Mar-2018 19:27:45 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[28-Mar-2018 19:27:45 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 901
[28-Mar-2018 19:28:03 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[28-Mar-2018 19:28:03 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 678
[28-Mar-2018 19:48:26 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[28-Mar-2018 19:48:26 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 901
[28-Mar-2018 19:48:49 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[28-Mar-2018 19:48:49 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 955
[28-Mar-2018 19:49:09 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[28-Mar-2018 19:49:09 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 994
[28-Mar-2018 19:49:25 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[28-Mar-2018 19:49:32 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[28-Mar-2018 19:49:44 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[28-Mar-2018 19:49:51 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[28-Mar-2018 21:18:42 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[28-Mar-2018 21:18:42 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 901
[28-Mar-2018 21:19:27 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[28-Mar-2018 21:19:28 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 423
[28-Mar-2018 21:19:42 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[28-Mar-2018 21:19:58 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[28-Mar-2018 21:19:58 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 901
[28-Mar-2018 21:20:26 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[28-Mar-2018 21:20:37 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[28-Mar-2018 21:20:37 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 678
[28-Mar-2018 21:20:51 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[28-Mar-2018 21:20:51 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 901
[01-Apr-2018 19:44:53 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[01-Apr-2018 19:44:53 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1131
[01-Apr-2018 19:45:18 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[01-Apr-2018 19:45:33 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[01-Apr-2018 19:45:50 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[01-Apr-2018 19:46:02 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[01-Apr-2018 19:46:02 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1131
[01-Apr-2018 19:47:23 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[01-Apr-2018 19:47:23 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1132
[01-Apr-2018 19:48:52 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[01-Apr-2018 19:48:52 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1133
[01-Apr-2018 19:50:13 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[01-Apr-2018 19:50:13 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1132
[01-Apr-2018 20:00:44 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[01-Apr-2018 20:00:44 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1136
[01-Apr-2018 20:02:45 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[01-Apr-2018 20:02:45 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1136
[01-Apr-2018 20:12:10 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 147
[01-Apr-2018 20:12:13 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 147
[01-Apr-2018 20:12:17 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[01-Apr-2018 20:12:17 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1136
[01-Apr-2018 20:12:18 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 147
[01-Apr-2018 20:18:22 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[01-Apr-2018 20:18:22 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1136
[01-Apr-2018 20:21:00 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[01-Apr-2018 20:21:12 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[01-Apr-2018 20:21:12 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1136
[01-Apr-2018 20:25:20 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[01-Apr-2018 20:25:20 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1138
[01-Apr-2018 20:25:23 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 147
[01-Apr-2018 20:26:13 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 147
[01-Apr-2018 20:26:15 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 147
[01-Apr-2018 20:26:18 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 147
[01-Apr-2018 20:26:20 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 147
[01-Apr-2018 20:29:20 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 147
[01-Apr-2018 20:29:33 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 147
[01-Apr-2018 20:29:45 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 147
[01-Apr-2018 20:29:48 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 147
[01-Apr-2018 20:32:10 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 147
[01-Apr-2018 20:32:12 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 147
[01-Apr-2018 20:32:20 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 147
[01-Apr-2018 20:32:51 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 147
[01-Apr-2018 20:32:54 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 147
[01-Apr-2018 20:33:22 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 147
[01-Apr-2018 20:34:23 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 147
[01-Apr-2018 20:41:27 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 164
[01-Apr-2018 20:43:53 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 45
[01-Apr-2018 20:56:25 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 90
[01-Apr-2018 21:02:20 UTC] PHP Parse error: syntax error, unexpected 'echo' (T_ECHO), expecting ',' or ';' in /home/homenowproject/public_html/visual.php on line 107
[01-Apr-2018 21:02:25 UTC] PHP Parse error: syntax error, unexpected 'echo' (T_ECHO), expecting ',' or ';' in /home/homenowproject/public_html/visual.php on line 107
[01-Apr-2018 21:02:32 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[01-Apr-2018 21:02:32 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1138
[01-Apr-2018 21:02:33 UTC] PHP Parse error: syntax error, unexpected 'echo' (T_ECHO), expecting ',' or ';' in /home/homenowproject/public_html/visual.php on line 107
[01-Apr-2018 21:02:46 UTC] PHP Parse error: syntax error, unexpected 'echo' (T_ECHO), expecting ',' or ';' in /home/homenowproject/public_html/visual.php on line 107
[01-Apr-2018 21:02:49 UTC] PHP Parse error: syntax error, unexpected 'echo' (T_ECHO), expecting ',' or ';' in /home/homenowproject/public_html/visual.php on line 107
[01-Apr-2018 21:03:11 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 90
[01-Apr-2018 21:06:17 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 21:06:36 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 21:09:49 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 21:10:01 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 21:10:02 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 21:10:05 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 21:10:18 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 21:10:21 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 21:10:34 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 21:10:38 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 21:16:13 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 21:16:42 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 21:16:48 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 90
[01-Apr-2018 21:16:50 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 21:17:26 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 21:18:45 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 90
[01-Apr-2018 21:18:54 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 21:18:57 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 21:23:52 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 21:24:47 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 21:32:00 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 90
[01-Apr-2018 21:33:35 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 90
[01-Apr-2018 21:33:54 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 21:33:57 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 21:34:48 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 21:36:27 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 90
[01-Apr-2018 21:38:26 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 90
[01-Apr-2018 21:39:04 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 90
[01-Apr-2018 21:39:27 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 21:39:38 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 21:39:42 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 90
[01-Apr-2018 21:39:43 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 21:40:02 UTC] PHP Fatal error: Call to undefined function domxml_new_doc() in /home/homenowproject/public_html/xlm.php on line 5
[01-Apr-2018 21:42:44 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 21:42:49 UTC] PHP Fatal error: Call to undefined function domxml_new_doc() in /home/homenowproject/public_html/xml.php on line 5
[01-Apr-2018 21:43:28 UTC] PHP Fatal error: Call to undefined function domxml_new_doc() in /home/homenowproject/public_html/xml.php on line 5
[01-Apr-2018 21:43:29 UTC] PHP Fatal error: Call to undefined function domxml_new_doc() in /home/homenowproject/public_html/xml.php on line 5
[01-Apr-2018 21:43:37 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 21:43:56 UTC] PHP Fatal error: Call to undefined function domxml_new_doc() in /home/homenowproject/public_html/xml.php on line 5
[01-Apr-2018 21:43:58 UTC] PHP Fatal error: Call to undefined function domxml_new_doc() in /home/homenowproject/public_html/xml.php on line 5
[01-Apr-2018 21:44:00 UTC] PHP Fatal error: Call to undefined function domxml_new_doc() in /home/homenowproject/public_html/xml.php on line 5
[01-Apr-2018 21:44:59 UTC] PHP Fatal error: Call to undefined function domxml_new_doc() in /home/homenowproject/public_html/xml.php on line 5
[01-Apr-2018 21:45:40 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 21:45:47 UTC] PHP Warning: mysqli_connect(): (HY000/1045): Access denied for user 'zwei13'@'localhost' (using password: YES) in /home/homenowproject/public_html/xml.php on line 15
[01-Apr-2018 21:45:47 UTC] PHP Warning: mysqli_error() expects exactly 1 parameter, 0 given in /home/homenowproject/public_html/xml.php on line 17
[01-Apr-2018 21:45:48 UTC] PHP Warning: mysqli_connect(): (HY000/1045): Access denied for user 'zwei13'@'localhost' (using password: YES) in /home/homenowproject/public_html/xml.php on line 15
[01-Apr-2018 21:45:48 UTC] PHP Warning: mysqli_error() expects exactly 1 parameter, 0 given in /home/homenowproject/public_html/xml.php on line 17
[01-Apr-2018 21:47:02 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 90
[01-Apr-2018 21:47:18 UTC] PHP Warning: mysqli_connect(): php_network_getaddresses: getaddrinfo failed: Name or service not known in /home/homenowproject/public_html/xml.php on line 15
[01-Apr-2018 21:47:18 UTC] PHP Warning: mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: Name or service not known in /home/homenowproject/public_html/xml.php on line 15
[01-Apr-2018 21:47:18 UTC] PHP Warning: mysqli_error() expects exactly 1 parameter, 0 given in /home/homenowproject/public_html/xml.php on line 17
[01-Apr-2018 21:49:49 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 19
[01-Apr-2018 21:49:49 UTC] PHP Warning: mysqli_error() expects exactly 1 parameter, 0 given in /home/homenowproject/public_html/xml.php on line 21
[01-Apr-2018 21:49:50 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 19
[01-Apr-2018 21:49:50 UTC] PHP Warning: mysqli_error() expects exactly 1 parameter, 0 given in /home/homenowproject/public_html/xml.php on line 21
[01-Apr-2018 21:49:51 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 19
[01-Apr-2018 21:49:51 UTC] PHP Warning: mysqli_error() expects exactly 1 parameter, 0 given in /home/homenowproject/public_html/xml.php on line 21
[01-Apr-2018 21:49:51 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 19
[01-Apr-2018 21:49:51 UTC] PHP Warning: mysqli_error() expects exactly 1 parameter, 0 given in /home/homenowproject/public_html/xml.php on line 21
[01-Apr-2018 21:49:52 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 19
[01-Apr-2018 21:49:52 UTC] PHP Warning: mysqli_error() expects exactly 1 parameter, 0 given in /home/homenowproject/public_html/xml.php on line 21
[01-Apr-2018 21:50:04 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 90
[01-Apr-2018 21:50:15 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 19
[01-Apr-2018 21:50:15 UTC] PHP Warning: mysqli_select_db() expects parameter 1 to be mysqli, null given in /home/homenowproject/public_html/xml.php on line 25
[01-Apr-2018 21:50:15 UTC] PHP Warning: mysqli_error() expects exactly 1 parameter, 0 given in /home/homenowproject/public_html/xml.php on line 27
[01-Apr-2018 21:51:36 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 19
[01-Apr-2018 21:51:36 UTC] PHP Warning: mysqli_select_db() expects parameter 1 to be mysqli, string given in /home/homenowproject/public_html/xml.php on line 25
[01-Apr-2018 21:51:36 UTC] PHP Warning: mysqli_error() expects exactly 1 parameter, 0 given in /home/homenowproject/public_html/xml.php on line 27
[01-Apr-2018 21:51:37 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 19
[01-Apr-2018 21:51:38 UTC] PHP Warning: mysqli_select_db() expects parameter 1 to be mysqli, string given in /home/homenowproject/public_html/xml.php on line 25
[01-Apr-2018 21:51:38 UTC] PHP Warning: mysqli_error() expects exactly 1 parameter, 0 given in /home/homenowproject/public_html/xml.php on line 27
[01-Apr-2018 21:52:13 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 19
[01-Apr-2018 21:52:13 UTC] PHP Warning: mysqli_query() expects at least 2 parameters, 1 given in /home/homenowproject/public_html/xml.php on line 32
[01-Apr-2018 21:52:13 UTC] PHP Warning: mysqli_error() expects exactly 1 parameter, 0 given in /home/homenowproject/public_html/xml.php on line 34
[01-Apr-2018 21:52:28 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 19
[01-Apr-2018 21:52:29 UTC] PHP Warning: mysqli_query() expects at least 2 parameters, 1 given in /home/homenowproject/public_html/xml.php on line 32
[01-Apr-2018 21:52:29 UTC] PHP Warning: mysqli_error() expects exactly 1 parameter, 0 given in /home/homenowproject/public_html/xml.php on line 34
[01-Apr-2018 21:52:30 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 19
[01-Apr-2018 21:52:30 UTC] PHP Warning: mysqli_query() expects at least 2 parameters, 1 given in /home/homenowproject/public_html/xml.php on line 32
[01-Apr-2018 21:52:30 UTC] PHP Warning: mysqli_error() expects exactly 1 parameter, 0 given in /home/homenowproject/public_html/xml.php on line 34
[01-Apr-2018 21:52:48 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 19
[01-Apr-2018 21:54:49 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 19
[01-Apr-2018 21:54:51 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 19
[01-Apr-2018 21:54:56 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 19
[01-Apr-2018 21:55:19 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 19
[01-Apr-2018 21:55:26 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 19
[01-Apr-2018 21:56:01 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 19
[01-Apr-2018 21:56:02 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 19
[01-Apr-2018 21:57:04 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 19
[01-Apr-2018 21:57:19 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 19
[01-Apr-2018 21:57:21 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 90
[01-Apr-2018 21:57:28 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 19
[01-Apr-2018 21:57:37 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 90
[01-Apr-2018 21:57:46 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 90
[01-Apr-2018 21:57:50 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 90
[01-Apr-2018 21:57:56 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 90
[01-Apr-2018 21:59:08 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 19
[01-Apr-2018 22:04:05 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 17
[01-Apr-2018 22:04:54 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 90
[01-Apr-2018 22:05:14 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 90
[01-Apr-2018 22:05:17 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 90
[01-Apr-2018 22:05:25 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 90
[01-Apr-2018 22:11:19 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 22:11:30 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 22:12:13 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 22:12:55 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 22:20:40 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[01-Apr-2018 22:20:45 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 72
[05-Apr-2018 18:31:34 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[05-Apr-2018 18:31:34 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1138
[05-Apr-2018 18:31:37 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 90
[05-Apr-2018 18:47:42 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 91
[05-Apr-2018 18:48:06 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 91
[05-Apr-2018 18:48:16 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[05-Apr-2018 18:48:16 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1138
[05-Apr-2018 18:48:18 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 91
[05-Apr-2018 18:53:35 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 52
[05-Apr-2018 18:54:58 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 75
[05-Apr-2018 18:56:23 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 53
[05-Apr-2018 18:56:26 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 53
[05-Apr-2018 18:56:38 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 31
[05-Apr-2018 18:56:48 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 92
[05-Apr-2018 18:57:01 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 47
[05-Apr-2018 18:58:24 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 94
[05-Apr-2018 18:59:13 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 94
[05-Apr-2018 19:00:51 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[05-Apr-2018 19:00:53 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 94
[05-Apr-2018 19:01:15 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[05-Apr-2018 19:01:15 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1138
[05-Apr-2018 19:01:17 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 94
[05-Apr-2018 19:03:00 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 94
[05-Apr-2018 19:03:35 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 94
[05-Apr-2018 19:03:52 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 94
[05-Apr-2018 19:04:06 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 94
[05-Apr-2018 19:04:19 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 94
[05-Apr-2018 19:04:30 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 94
[05-Apr-2018 19:04:40 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 94
[05-Apr-2018 19:04:44 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 94
[05-Apr-2018 19:05:21 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 94
[05-Apr-2018 19:06:24 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 95
[05-Apr-2018 19:06:38 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 95
[05-Apr-2018 19:07:16 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 96
[05-Apr-2018 19:07:30 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 96
[05-Apr-2018 19:07:44 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 96
[05-Apr-2018 19:16:33 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 96
[05-Apr-2018 19:20:32 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 99
[05-Apr-2018 19:28:52 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 100
[05-Apr-2018 19:30:11 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 101
[05-Apr-2018 19:31:03 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 101
[05-Apr-2018 19:32:07 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[05-Apr-2018 19:32:07 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1138
[05-Apr-2018 19:32:07 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 101
[05-Apr-2018 19:32:34 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[05-Apr-2018 19:32:34 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1138
[05-Apr-2018 19:36:45 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 96
[05-Apr-2018 19:37:07 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 96
[05-Apr-2018 19:41:01 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 101
[05-Apr-2018 19:41:23 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 101
[05-Apr-2018 19:41:32 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 101
[05-Apr-2018 19:41:46 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 101
[05-Apr-2018 19:44:28 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 103
[05-Apr-2018 19:45:19 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 103
[05-Apr-2018 19:45:36 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 103
[05-Apr-2018 19:45:38 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 103
[05-Apr-2018 19:46:41 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 104
[05-Apr-2018 19:47:03 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 104
[05-Apr-2018 19:47:30 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 104
[05-Apr-2018 19:47:41 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 104
[05-Apr-2018 19:48:02 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 104
[05-Apr-2018 19:48:14 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 104
[05-Apr-2018 19:48:52 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 104
[05-Apr-2018 19:49:11 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 104
[05-Apr-2018 19:49:58 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 101
[05-Apr-2018 19:55:05 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 101
[05-Apr-2018 19:55:52 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[05-Apr-2018 19:55:52 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1138
[05-Apr-2018 19:55:52 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 101
[05-Apr-2018 19:56:40 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 101
[05-Apr-2018 19:57:02 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 101
[05-Apr-2018 19:57:16 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 101
[05-Apr-2018 19:57:33 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 101
[05-Apr-2018 19:57:41 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 101
[05-Apr-2018 20:07:22 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 122
[05-Apr-2018 20:07:38 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 122
[05-Apr-2018 20:08:17 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 123
[05-Apr-2018 20:08:34 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 124
[05-Apr-2018 20:09:09 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 118
[05-Apr-2018 20:09:13 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 118
[05-Apr-2018 20:13:53 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 119
[05-Apr-2018 20:14:01 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 119
[05-Apr-2018 20:18:20 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 123
[05-Apr-2018 20:19:01 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 123
[05-Apr-2018 20:19:55 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 123
[05-Apr-2018 20:20:06 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 123
[05-Apr-2018 20:20:11 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 123
[05-Apr-2018 20:20:19 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 123
[05-Apr-2018 20:20:28 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 123
[05-Apr-2018 20:22:39 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 125
[05-Apr-2018 20:23:02 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 125
[05-Apr-2018 20:23:33 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 125
[05-Apr-2018 20:23:37 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 125
[05-Apr-2018 20:26:09 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 125
[05-Apr-2018 20:26:29 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 125
[05-Apr-2018 20:38:08 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 125
[05-Apr-2018 20:39:48 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 125
[05-Apr-2018 20:40:04 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 125
[05-Apr-2018 20:46:07 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 125
[05-Apr-2018 20:46:25 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 125
[05-Apr-2018 20:46:47 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 125
[05-Apr-2018 20:47:36 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 125
[05-Apr-2018 20:48:23 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 125
[05-Apr-2018 20:49:33 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 125
[05-Apr-2018 20:49:38 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[05-Apr-2018 20:49:46 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[05-Apr-2018 20:49:46 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1138
[05-Apr-2018 20:49:47 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 125
[05-Apr-2018 20:49:52 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 125
[05-Apr-2018 20:50:05 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[05-Apr-2018 20:50:21 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[05-Apr-2018 20:53:24 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 125
[05-Apr-2018 20:53:33 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 125
[05-Apr-2018 20:53:45 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 125
[05-Apr-2018 20:53:53 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 125
[05-Apr-2018 20:54:00 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 125
[05-Apr-2018 20:56:36 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 129
[05-Apr-2018 20:57:39 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 129
[05-Apr-2018 20:58:50 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 131
[05-Apr-2018 20:59:05 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 131
[05-Apr-2018 20:59:40 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 130
[05-Apr-2018 20:59:58 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 130
[05-Apr-2018 21:00:48 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 131
[05-Apr-2018 21:00:58 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 131
[05-Apr-2018 21:01:19 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 132
[05-Apr-2018 21:01:31 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 132
[05-Apr-2018 21:02:07 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 132
[05-Apr-2018 21:02:24 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 132
[05-Apr-2018 21:02:29 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 132
[05-Apr-2018 21:10:50 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 143
[05-Apr-2018 21:11:27 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 143
[05-Apr-2018 21:11:36 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 143
[05-Apr-2018 21:12:50 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 144
[05-Apr-2018 21:13:21 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 144
[05-Apr-2018 21:13:54 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 145
[05-Apr-2018 21:14:22 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 151
[05-Apr-2018 21:14:39 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 153
[05-Apr-2018 21:14:47 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 153
[05-Apr-2018 21:15:00 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 153
[05-Apr-2018 21:17:47 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 153
[05-Apr-2018 21:19:18 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 150
[05-Apr-2018 21:19:47 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 149
[05-Apr-2018 21:20:12 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 151
[05-Apr-2018 21:20:51 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 151
[05-Apr-2018 21:22:19 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 152
[05-Apr-2018 21:22:45 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 152
[05-Apr-2018 21:23:56 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 157
[05-Apr-2018 21:24:16 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 157
[05-Apr-2018 21:25:29 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 156
[05-Apr-2018 21:25:36 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 156
[05-Apr-2018 21:25:50 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 156
[05-Apr-2018 21:25:55 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 156
[05-Apr-2018 21:28:05 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[05-Apr-2018 21:28:05 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1138
[05-Apr-2018 21:28:07 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 156
[05-Apr-2018 21:29:40 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 155
[05-Apr-2018 21:30:08 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 155
[05-Apr-2018 21:39:16 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 158
[05-Apr-2018 21:39:27 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 158
[05-Apr-2018 21:39:47 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 158
[05-Apr-2018 21:39:53 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 158
[05-Apr-2018 21:40:57 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 157
[05-Apr-2018 21:41:43 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 155
[05-Apr-2018 21:43:03 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 154
[05-Apr-2018 21:43:07 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 154
[05-Apr-2018 21:56:20 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 154
[05-Apr-2018 21:56:43 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 155
[05-Apr-2018 21:56:50 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 155
[05-Apr-2018 21:57:17 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 155
[05-Apr-2018 21:57:26 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 155
[05-Apr-2018 21:57:34 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 155
[05-Apr-2018 21:58:49 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 155
[05-Apr-2018 22:08:22 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 155
[05-Apr-2018 22:09:46 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 155
[05-Apr-2018 22:09:56 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 155
[05-Apr-2018 22:11:10 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 155
[05-Apr-2018 22:12:23 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 155
[05-Apr-2018 22:15:02 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 160
[05-Apr-2018 22:15:20 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 160
[05-Apr-2018 22:15:37 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 160
[05-Apr-2018 22:15:54 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 160
[05-Apr-2018 22:16:59 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 160
[05-Apr-2018 22:17:05 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 160
[05-Apr-2018 22:18:13 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 160
[05-Apr-2018 22:19:20 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 160
[05-Apr-2018 22:20:02 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 160
[05-Apr-2018 22:20:15 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 160
[05-Apr-2018 22:24:30 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 160
[05-Apr-2018 22:24:51 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 160
[05-Apr-2018 22:25:04 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 160
[05-Apr-2018 22:25:51 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 160
[05-Apr-2018 22:26:59 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 160
[05-Apr-2018 22:27:24 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 160
[05-Apr-2018 22:27:50 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 160
[05-Apr-2018 22:28:07 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 160
[05-Apr-2018 22:30:40 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 166
[05-Apr-2018 22:31:02 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 166
[05-Apr-2018 22:31:07 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 166
[05-Apr-2018 22:31:27 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 166
[05-Apr-2018 22:31:42 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 166
[05-Apr-2018 22:31:56 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 166
[05-Apr-2018 22:32:14 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 166
[05-Apr-2018 22:36:51 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 166
[05-Apr-2018 22:37:04 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 166
[05-Apr-2018 22:38:35 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 174
[05-Apr-2018 22:39:24 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 177
[05-Apr-2018 22:39:56 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 177
[05-Apr-2018 22:42:58 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 177
[05-Apr-2018 22:43:50 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 177
[05-Apr-2018 22:44:31 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 177
[08-Apr-2018 18:23:48 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 177
[15-Apr-2018 18:59:22 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 17
[15-Apr-2018 18:59:24 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 17
[15-Apr-2018 19:12:38 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[15-Apr-2018 19:12:38 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1138
[15-Apr-2018 19:12:39 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 177
[15-Apr-2018 19:14:01 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 177
[15-Apr-2018 19:38:22 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 17
[15-Apr-2018 19:40:29 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 177
[15-Apr-2018 19:40:29 UTC] PHP Warning: Division by zero in /home/homenowproject/public_html/visual.php on line 397
[15-Apr-2018 19:40:35 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 177
[15-Apr-2018 19:41:26 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 177
[15-Apr-2018 19:45:08 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 187
[15-Apr-2018 19:46:07 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 187
[15-Apr-2018 19:51:46 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 188
[15-Apr-2018 19:52:50 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 188
[15-Apr-2018 19:53:38 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 188
[15-Apr-2018 20:01:21 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 196
[15-Apr-2018 20:03:27 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 196
[15-Apr-2018 20:03:55 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 196
[15-Apr-2018 20:04:26 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 197
[15-Apr-2018 20:05:15 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 197
[15-Apr-2018 20:06:54 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 198
[15-Apr-2018 20:07:43 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 17
[15-Apr-2018 20:07:44 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 17
[15-Apr-2018 20:08:09 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 17
[15-Apr-2018 20:08:10 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 17
[15-Apr-2018 20:08:11 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 17
[15-Apr-2018 20:08:36 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 198
[15-Apr-2018 20:09:09 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 17
[15-Apr-2018 20:09:31 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 198
[15-Apr-2018 20:09:43 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 198
[15-Apr-2018 20:09:57 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 17
[15-Apr-2018 20:09:58 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 17
[15-Apr-2018 20:09:59 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 17
[15-Apr-2018 20:09:59 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 17
[15-Apr-2018 20:10:22 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 17
[15-Apr-2018 20:10:22 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 17
[15-Apr-2018 20:10:50 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 17
[15-Apr-2018 20:10:50 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 17
[15-Apr-2018 20:10:50 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 198
[15-Apr-2018 20:10:52 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 17
[15-Apr-2018 20:10:52 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 17
[15-Apr-2018 20:12:32 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 197
[15-Apr-2018 20:12:46 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 197
[15-Apr-2018 20:13:14 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 197
[15-Apr-2018 20:13:19 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 197
[15-Apr-2018 20:13:55 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 197
[15-Apr-2018 20:14:57 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 197
[15-Apr-2018 20:15:22 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 17
[15-Apr-2018 20:15:22 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 17
[15-Apr-2018 20:15:32 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 197
[15-Apr-2018 20:18:29 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 17
[15-Apr-2018 20:19:24 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 204
[15-Apr-2018 20:20:49 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 206
[15-Apr-2018 20:23:01 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 206
[15-Apr-2018 20:24:37 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 205
[15-Apr-2018 20:25:20 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 205
[15-Apr-2018 20:25:37 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 205
[15-Apr-2018 20:26:07 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 205
[15-Apr-2018 20:26:11 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 17
[15-Apr-2018 20:27:28 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 213
[15-Apr-2018 20:27:53 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 213
[15-Apr-2018 20:29:22 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 213
[15-Apr-2018 20:33:27 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 213
[15-Apr-2018 20:36:10 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 213
[15-Apr-2018 20:38:16 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 213
[15-Apr-2018 20:41:53 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 213
[15-Apr-2018 20:43:11 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 215
[15-Apr-2018 20:43:54 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 217
[15-Apr-2018 20:45:02 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 217
[15-Apr-2018 20:47:32 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 217
[15-Apr-2018 20:48:39 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 217
[15-Apr-2018 20:49:13 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 217
[15-Apr-2018 20:50:11 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 217
[15-Apr-2018 20:50:30 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 217
[15-Apr-2018 20:51:07 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 217
[15-Apr-2018 20:51:29 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 217
[15-Apr-2018 20:52:17 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 217
[15-Apr-2018 20:52:21 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 217
[15-Apr-2018 20:53:11 UTC] PHP Parse error: syntax error, unexpected 'echo' (T_ECHO), expecting ',' or ';' in /home/homenowproject/public_html/visual.php on line 445
[15-Apr-2018 20:53:20 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 217
[15-Apr-2018 20:53:20 UTC] PHP Warning: Division by zero in /home/homenowproject/public_html/visual.php on line 442
[15-Apr-2018 20:53:21 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 217
[15-Apr-2018 20:53:54 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 217
[15-Apr-2018 20:56:00 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 217
[15-Apr-2018 21:03:47 UTC] PHP Parse error: syntax error, unexpected ')' in /home/homenowproject/public_html/visual.php on line 490
[15-Apr-2018 21:04:08 UTC] PHP Parse error: syntax error, unexpected ')' in /home/homenowproject/public_html/visual.php on line 490
[15-Apr-2018 21:04:10 UTC] PHP Parse error: syntax error, unexpected ')' in /home/homenowproject/public_html/visual.php on line 490
[15-Apr-2018 21:04:46 UTC] PHP Parse error: syntax error, unexpected ')' in /home/homenowproject/public_html/visual.php on line 490
[15-Apr-2018 21:05:26 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 227
[15-Apr-2018 21:16:07 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 73
[15-Apr-2018 21:17:45 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 227
[15-Apr-2018 21:17:52 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 227
[15-Apr-2018 21:18:01 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 227
[15-Apr-2018 21:18:09 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 227
[15-Apr-2018 21:18:12 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 227
[15-Apr-2018 21:18:21 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 227
[15-Apr-2018 21:18:21 UTC] PHP Warning: Division by zero in /home/homenowproject/public_html/visual.php on line 452
[15-Apr-2018 21:22:31 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 227
[15-Apr-2018 21:22:39 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 227
[15-Apr-2018 21:36:46 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 227
[18-Apr-2018 19:31:27 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 73
[18-Apr-2018 23:48:16 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 227
[18-Apr-2018 23:48:16 UTC] PHP Warning: Division by zero in /home/homenowproject/public_html/visual.php on line 452
[19-Apr-2018 00:11:16 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 148
[19-Apr-2018 00:11:16 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1138
[19-Apr-2018 00:12:39 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 229
[19-Apr-2018 00:12:39 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1227
[19-Apr-2018 00:14:04 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 229
[19-Apr-2018 00:14:04 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1228
[19-Apr-2018 00:17:06 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 235
[19-Apr-2018 00:17:06 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1234
[19-Apr-2018 00:19:00 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 235
[19-Apr-2018 00:19:00 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1234
[19-Apr-2018 00:19:51 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 237
[19-Apr-2018 00:19:51 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1236
[19-Apr-2018 00:20:10 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 237
[19-Apr-2018 00:20:10 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1236
[19-Apr-2018 00:20:36 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 227
[19-Apr-2018 00:20:36 UTC] PHP Warning: Division by zero in /home/homenowproject/public_html/visual.php on line 452
[19-Apr-2018 00:21:01 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 227
[19-Apr-2018 00:21:01 UTC] PHP Warning: Division by zero in /home/homenowproject/public_html/visual.php on line 452
[19-Apr-2018 00:22:20 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 227
[19-Apr-2018 00:22:26 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 227
[19-Apr-2018 00:22:26 UTC] PHP Warning: Division by zero in /home/homenowproject/public_html/visual.php on line 452
[19-Apr-2018 00:22:30 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 227
[19-Apr-2018 00:22:34 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 227
[19-Apr-2018 00:32:06 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 227
[19-Apr-2018 00:33:57 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 227
[19-Apr-2018 00:34:37 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 227
[19-Apr-2018 00:34:45 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 227
[19-Apr-2018 00:35:00 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 227
[19-Apr-2018 00:35:24 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 227
[19-Apr-2018 00:35:42 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 227
[19-Apr-2018 00:36:16 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 227
[19-Apr-2018 00:36:29 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 227
[19-Apr-2018 00:37:32 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 228
[19-Apr-2018 00:39:02 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 231
[19-Apr-2018 00:39:43 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 232
[19-Apr-2018 00:40:43 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 231
[19-Apr-2018 00:43:54 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 239
[19-Apr-2018 00:45:27 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 239
[19-Apr-2018 00:46:29 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 239
[19-Apr-2018 00:46:33 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 239
[19-Apr-2018 00:46:45 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 239
[19-Apr-2018 00:47:54 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 239
[19-Apr-2018 00:48:50 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 00:49:39 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 239
[19-Apr-2018 00:50:04 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 239
[19-Apr-2018 00:50:53 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 239
[19-Apr-2018 00:52:45 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 239
[19-Apr-2018 00:55:32 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 239
[19-Apr-2018 00:55:49 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 239
[19-Apr-2018 00:56:15 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 239
[19-Apr-2018 00:56:57 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 00:57:28 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 00:59:12 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 00:59:32 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 00:59:48 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 00:59:59 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 01:00:51 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 239
[19-Apr-2018 01:00:58 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 239
[19-Apr-2018 01:01:22 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 239
[19-Apr-2018 01:01:33 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 239
[19-Apr-2018 01:01:44 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 239
[19-Apr-2018 01:02:15 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 01:02:25 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 01:04:45 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[19-Apr-2018 01:05:26 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[19-Apr-2018 01:05:50 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 01:06:09 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 01:06:51 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[19-Apr-2018 01:08:06 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 01:08:15 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 01:09:30 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 01:13:48 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 01:14:29 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 01:16:03 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 01:18:09 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 01:20:02 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 01:23:55 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 01:24:32 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 01:24:39 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 01:25:27 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 01:25:41 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 01:30:26 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 01:33:46 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 01:35:48 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 01:38:43 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 01:39:03 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 240
[19-Apr-2018 01:39:58 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 242
[19-Apr-2018 01:40:02 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 242
[19-Apr-2018 01:40:37 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 242
[19-Apr-2018 01:41:11 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 242
[19-Apr-2018 01:42:13 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[19-Apr-2018 01:42:24 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[19-Apr-2018 01:44:49 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[19-Apr-2018 01:45:12 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[19-Apr-2018 01:47:47 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[19-Apr-2018 01:48:20 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[19-Apr-2018 01:48:35 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[19-Apr-2018 01:48:54 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[19-Apr-2018 01:57:07 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[19-Apr-2018 01:57:19 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[19-Apr-2018 01:58:25 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[19-Apr-2018 01:58:36 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[19-Apr-2018 01:58:43 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[19-Apr-2018 02:00:58 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[19-Apr-2018 02:01:07 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[19-Apr-2018 02:01:13 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[19-Apr-2018 02:01:32 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 18:29:27 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 73
[20-Apr-2018 18:30:06 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/xml.php on line 17
[20-Apr-2018 18:31:29 UTC] PHP Warning: require_once(./settings.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/chat.php on line 3
[20-Apr-2018 18:31:29 UTC] PHP Fatal error: require_once(): Failed opening required './settings.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/homenowproject/public_html/chat.php on line 3
[20-Apr-2018 19:53:15 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 73
[20-Apr-2018 20:00:29 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 73
[20-Apr-2018 20:01:08 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 73
[20-Apr-2018 20:01:19 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 73
[20-Apr-2018 20:01:24 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 73
[20-Apr-2018 20:01:27 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 73
[20-Apr-2018 20:01:58 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 73
[20-Apr-2018 20:02:03 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:02:03 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:02:03 UTC] PHP Fatal error: require(): Failed opening required 'php-scripts/yelp.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:02:12 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:02:12 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:02:12 UTC] PHP Fatal error: require(): Failed opening required 'php-scripts/yelp.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:05:42 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 73
[20-Apr-2018 20:05:49 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 73
[20-Apr-2018 20:06:09 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 73
[20-Apr-2018 20:06:17 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 73
[20-Apr-2018 20:06:21 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 73
[20-Apr-2018 20:07:31 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 73
[20-Apr-2018 20:07:37 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:07:37 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:07:37 UTC] PHP Fatal error: require(): Failed opening required 'php-scripts/yelp.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:07:40 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:07:40 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:07:40 UTC] PHP Fatal error: require(): Failed opening required 'php-scripts/yelp.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:07:46 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 73
[20-Apr-2018 20:07:49 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:07:49 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:07:49 UTC] PHP Fatal error: require(): Failed opening required 'php-scripts/yelp.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:07:53 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:07:53 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:07:53 UTC] PHP Fatal error: require(): Failed opening required 'php-scripts/yelp.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:08:27 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 73
[20-Apr-2018 20:08:30 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 73
[20-Apr-2018 20:08:59 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/action.php on line 237
[20-Apr-2018 20:08:59 UTC] PHP Fatal error: Call to a member function close() on resource in /home/homenowproject/public_html/action.php on line 1236
[20-Apr-2018 20:09:02 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:09:12 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:09:16 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:09:19 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:09:19 UTC] PHP Warning: Division by zero in /home/homenowproject/public_html/visual.php on line 475
[20-Apr-2018 20:09:22 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:09:30 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:13:32 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:13:32 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:13:32 UTC] PHP Fatal error: require(): Failed opening required 'php-scripts/yelp.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:13:38 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:13:38 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:13:38 UTC] PHP Fatal error: require(): Failed opening required 'php-scripts/yelp.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:19:18 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:19:22 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:19:22 UTC] PHP Warning: Division by zero in /home/homenowproject/public_html/visual.php on line 475
[20-Apr-2018 20:22:34 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:22:40 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:22:53 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:22:53 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:22:53 UTC] PHP Fatal error: require(): Failed opening required 'php-scripts/yelp.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:23:13 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:23:18 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:23:21 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:23:25 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:23:28 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:23:37 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:23:55 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:23:55 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:23:55 UTC] PHP Fatal error: require(): Failed opening required 'php-scripts/yelp.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:24:03 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:24:49 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:24:53 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:25:09 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:25:14 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:25:17 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:25:36 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:25:51 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:25:54 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:26:08 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:26:13 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:26:17 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:26:20 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:27:52 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:28:07 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:28:07 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:28:07 UTC] PHP Fatal error: require(): Failed opening required 'php-scripts/yelp.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:28:09 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:28:09 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:28:09 UTC] PHP Fatal error: require(): Failed opening required 'php-scripts/yelp.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:28:36 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:28:40 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:29:42 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:29:44 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:29:50 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:29:56 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:30:02 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:30:02 UTC] PHP Warning: Division by zero in /home/homenowproject/public_html/visual.php on line 475
[20-Apr-2018 20:30:38 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 244
[20-Apr-2018 20:30:38 UTC] PHP Warning: Division by zero in /home/homenowproject/public_html/visual.php on line 476
[20-Apr-2018 20:30:41 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 244
[20-Apr-2018 20:30:51 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 244
[20-Apr-2018 20:30:56 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 244
[20-Apr-2018 20:31:06 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:31:06 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:31:06 UTC] PHP Fatal error: require(): Failed opening required 'php-scripts/yelp.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:31:13 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 73
[20-Apr-2018 20:31:13 UTC] PHP Fatal error: Call to a member function query() on resource in /home/homenowproject/public_html/user_input.php on line 101
[20-Apr-2018 20:31:44 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:31:44 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:31:44 UTC] PHP Fatal error: require(): Failed opening required 'php-scripts/yelp.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:32:38 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 244
[20-Apr-2018 20:32:42 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 244
[20-Apr-2018 20:33:07 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 244
[20-Apr-2018 20:33:11 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 244
[20-Apr-2018 20:33:18 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:33:18 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:33:18 UTC] PHP Fatal error: require(): Failed opening required 'php-scripts/yelp.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:33:21 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:33:21 UTC] PHP Warning: require(php-scripts/yelp.php): failed to open stream: No such file or directory in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:33:21 UTC] PHP Fatal error: require(): Failed opening required 'php-scripts/yelp.php' (include_path='.:/opt/cpanel/ea-php56/root/usr/share/pear') in /home/homenowproject/public_html/result.php on line 2
[20-Apr-2018 20:33:25 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 244
[20-Apr-2018 20:33:29 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 244
[20-Apr-2018 20:35:06 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 73
[20-Apr-2018 20:35:06 UTC] PHP Fatal error: Call to a member function query() on resource in /home/homenowproject/public_html/user_input.php on line 101
[20-Apr-2018 20:35:10 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 245
[20-Apr-2018 20:35:13 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 73
[20-Apr-2018 20:35:13 UTC] PHP Fatal error: Call to a member function query() on resource in /home/homenowproject/public_html/user_input.php on line 101
[20-Apr-2018 20:35:39 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 245
[20-Apr-2018 20:35:44 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 245
[20-Apr-2018 20:36:22 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 244
[20-Apr-2018 20:36:39 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 245
[20-Apr-2018 20:37:48 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:38:07 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 244
[20-Apr-2018 20:38:07 UTC] PHP Warning: Division by zero in /home/homenowproject/public_html/visual.php on line 476
[20-Apr-2018 20:39:30 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 244
[20-Apr-2018 20:40:03 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 244
[20-Apr-2018 20:40:23 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 245
[20-Apr-2018 20:40:56 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 244
[20-Apr-2018 20:41:06 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 245
[20-Apr-2018 20:41:18 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 73
[20-Apr-2018 20:42:34 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:42:36 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/user_input.php on line 73
[20-Apr-2018 20:48:19 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:48:42 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:49:06 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 242
[20-Apr-2018 20:49:25 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 242
[20-Apr-2018 20:50:20 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:51:08 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 244
[20-Apr-2018 20:51:47 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 244
[20-Apr-2018 20:53:06 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 245
[20-Apr-2018 20:53:27 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 245
[20-Apr-2018 20:54:13 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:54:50 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 243
[20-Apr-2018 20:55:18 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 245
[20-Apr-2018 20:55:29 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 244
[20-Apr-2018 20:56:56 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 244
[20-Apr-2018 20:57:08 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 244
[20-Apr-2018 21:02:13 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 244
[20-Apr-2018 21:02:19 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 244
[20-Apr-2018 21:02:25 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 244
[20-Apr-2018 21:02:29 UTC] PHP Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/homenowproject/public_html/visual.php on line 244