forked from shiveeg1/Library-Management-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ind2
1990 lines (1990 loc) · 27.9 KB
/
ind2
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
.=
< ?php ? > (opening and closing tags)
\ (backslash)
/*
//
& (ampersand)
&& (Boolean And operator)
“ (double quotes)
== (equal to)
=== (equal to
› (greater than)
› = (greater than or equal to)
‹ (less than)
!= (not equal to)
‹› (not equal to)
!== (not equal to
same)
. (operator)
$ (regex)
* (regex)
+ (regex)
– (regex)
. (regex)
? (regex)
^ (regex)
{ n }
{ n
\d
\D
\s
\S
\w
\W
‘ (single quotation marks)
?: (ternary operator)
% (wildcard)
_ (wildcard)
‹ = (less than or equal to)
| | (logical operator alternate)
[ ] (regex)
[^ ] (regex)
- - $value
abandonment
abs()
access logs
account functionality (BBS)
frm_admin.php
frm_forgotpass.php
frm_index.php
frm_login.php
frm_useraccount.php
initial login
User Administration page
user management
acronym
ADD link
Add submit button
admin_area.php
administration GUIs
administration interface
CMS
mailing list
movie review database
administration transaction pages (BBS)
admin.php
advertising mailing lists
ait.com
E_ALL
alt attributes
ALTER
ALTER TABLE
AMP. See Apache
ampersand (&)
Analog
AND (logical operator)
And
announcement mailing lists
configuration
on Linux
error handling
ErrorDocument directive
functions (list)
installation
help/information
on Linux
online information
testing
logs
role of
starting/stopping
web site
Apache
component interaction
Apache Service Monitor
array functions
array pointer
arrays
adding
defined
foreach constructs and
multidimensional
sorting
syntax
arsort($array)
article transaction pages
creating
feedback for
publishing
reviewing
viewing
AS
asort($array)
atomicity
auth.inc.php
401: Authorization Required
auto-increment command
avatars
AWStats
back references
backslash (\)
400: Bad Request
BBcode Administration page
BBcodes
BCC (blind carbon copy)
BCNF (Boyce-Codd Normal Form)
BDB (BerkeleyDB)
BerkeleyDB (BDB)
BIGINT
BINARY
BIT
blind carbon copy (BCC)
BLOB
BMP
IMAGETYPE_BMP
Board Administration page
BOOL
BOOLEAN
Boolean And operator (&&)
Boyce-Codd Normal Form (BCNF)
breadcrumbs
brightness
bulletin board system (BBS)
account functionality
frm_admin.php
frm_forgotpass.php
frm_index.php
frm_login.php
frm_useraccount.php
initial login
User Administration page
user management
avatars
polls
quoting text
smilies
user profiles
BBcodes
breadcrumbs
database
features
as forum
frm_admin.php
BBcode Administration
Board Administration
Forum Administration
User Administration
functionality
pagination
regex in
reusable scripts
searching in
settings
tables
frm_access_levels
frm_admin
frm_bbcode
frm_forum
frm_post_count
frm_posts
frm_users
transaction pages
administration
frm_transact_admin.php
frm_transact_affirm.php
frm_transact_post.php
frm_transact_user.php
post
removal/deletion
user–related
user authentication
using (exercise)
calculate_differences()
captions
Cart32
Cascade DELETE
ceil()
CHAR
CHAR BYTE
CHARACTER
characters application
edit_characters.php
list_characters.php
management of characters page
pages in
superhero powers page
transaction page
char_transaction.php
check boxes
check out process
ecomm_checkout2.php
ecomm_checkout3.php
ecomm_checkout.php
steps in
testing
checkdate()
check_effect.php
check_image.php
captions and
filters and
child page
classes
encapsulation and
SimpleMail
class.SimpleMail.php
closed source model
closing/opening tags (< ?php ? >)
cms_access_levels table
cms_admin.php
cms_articles table
cms_comment.php
cms_compose.php
cms_cpanel.php
cms_footer.inc.php
cms_forgot_password.php
cms_header.inc.php
cms_http_functions.inc.php
cms_index.php
cms_login.php
cms_output_functions.inc.php
418
cms_pending.php
cms_review_article.php
cms_search.php
cms_transact_article.php
cms_transact_user.php
cms_user_account.php
cms_users table
cms_view_article.php
code/coding practices
comments in
consistency in
line numbers in
colorizing images
comic book fan web site
bulletin board system
account functionality
additions
BBcodes
breadcrumbs
database preparation
features
as forum
functionality
pagination
regex in
reusable scripts
searching in
settings
tables
transaction pages
user authentication
using (exercise)
characters application
edit_characters.php
list_characters.php
management of characters page
pages in
superhero powers page
transaction page
CMS
articles
database structure
reusable scripts
search feature
transaction pages
user control panel
user interface
database
creating
designing
normalization
standards
e-commerce
e-mail
sending
SimpleMail class
mailing list
administration page
advertising
announcements
database
ethics
ml_admin.php
ml_admin_transact.php
ml_quick_msg.php
ml_remove.php
ml_thanks.php
ml_user.php
ml_user_transact.php
newsletters
opt–in
opt–out
removing subscriptions
signup form
spam
tables
types of
web site notifications
confirmation and
images and
JavaScript and
creation of
normalization and
comic_character_power
comic_rivalrly
commands (MySQL)
comments
coding practice
debugging and
future changes and
PHP
commit.php
checking dates/numbers
editing
erroneous user input
switch
common links
comparison operators
!=
=
‹
›
›=
‹ =
LIKE
WHERE and
E_COMPILE_ERROR
E_COMPILE_WARNING
composite primary key
condition clauses
confirmation
workflow application and
confirm.php
connecting to MySQL server
consistency
constants
content management system (CMS)
creating
feedback for
publishing
reviewing
viewing
database structure
cms_access_levels table
cms_admin.php
cms_articles table
cms_comment.php
cms_compose.php
cms_cpanel.php
cms_footer.inc.php
cms_forgot_password.php
cms_header.inc.php
cms_http_functions.inc.php
419–420
cms_index.php
cms_login.php
cms_output_functions.inc.php
418
cms_pending.php
cms_review_article.php
cms_search.php
cms_transact_article.php
cms_transact_user.php
cms_user_account.php
cms_users table
cms_view_article.php
reusable scripts
search feature
transaction pages
user control panel
user interface
contrast
converting image types
cookies
defined
passing variables with
security risks
sessions v.
setting
tracking
cookies_delete.php
cookies_set.php
cookies_test.php
cookies_view.php
copyrighted images
E_CORE_ERROR
E_CORE_WARNING
CREATE
CREATE DATABASE yourdatabase
CREATE TABLE
createimagefrom* ()
cron jobs
ctype_* functions
ctype_alnum()
ctype_alpha()
ctype_cntrl()
ctype_digit()
ctype_graph()
ctype_lower()
ctype_print()
ctype_punct()
ctype_space()
ctype_upper()
ctype_xdigit()
custom error messages
custom logs
custom_error.php
characteristics
communication with
feedback
personal customer service
privacy policy
return policy
processing
trust
DB++
dBase
editing
filePro
Firebird
FrontBase
IBM DB2
Informix
Ingres Database
mailing list
MaxDB
Microsoft Access
Microsoft SQL Server
mSQL
data retrieval from
manipulation commands
parameters
normalization
Oracle OC18
Ovrimos SQL
Paradox File Access
PDO and
PHP supported
PostgreSQL
SQLite
Sybase
DATE
date()
date.php
dates/numbers
DATETIME
field types
formatting codes
functions
DB++
dBase
db_ch03–1.php
db_ch03–2.php
db_ch04–1.php
db_ch04–2.php
db_ch07–1.php
db_ch07–2.php
db_ch08.php
db_ch10.php
db_ch11–1.php
db_ch11–2.php
db_ch12–1.php
db_ch12–2.php
db_ch13.php
db_ch14.php
db_ch15–1.php
db_ch15–2.php
db_ch16.php
db.inc.php
comments and
echo and
tips
Xdebug and
DEC
DECIMAL
decrementing values
- - $value
$value - -
define() function
DELETE
Cascade
DELETE links
delete.php
Cascade DELETE
of items in cart
of records
of transaction pages
DESCRIBE
design rules (standards)
designing database (Comic Book)
directory/file functions
documentation
DOUBLE
DOUBLE PRECISION
double quotation marks (“)
do/while
Dreamweaver CS3
DROP
drop–down list boxes
echo
debugging and
print v.
ecomm_checkout2.php
ecomm_checkout3.php
ecomm_checkout.php
ecomm_customers table
e-commerce
common links
competitive pricing
characteristics
communication with
feedback
personal customer service
privacy policy
return policy
secure credit card processing
trust
guidelines
home page
information
navigation
appropriate
ideas for
timely delivery
viewing information on
professional look
search feature
abandonment
Cart32
check out process
coding
database
db_ch15 - 1.php
db_ch15 - 2.php
ecomm_checkout2.php
ecomm_checkout3.php
ecomm_checkout.php
ecomm_shop.php
ecomm_update_cart.php
ecomm_view_cart.php
ecomm_view_product.php
products
tables
temporary
third–party software
ecomm_order_details table
ecomm_orders table
ecomm_products table
ecomm_shop.php
ecomm_temp_cart table
edges
EDIT link
edit_characters.php
commit.php
databases
movie
EditPlus
edit_power.php
E_ERROR
efficient code
functions and
include statement
else statements
e-mail (PHP)
error
mail()
errors and
mail functions
PHP setup for
confirmation implementation
images and
sending
data collection and
headers and
HTML and
multipart messages
simple
SimpleMail class
empty()
empty variables
encapsulation
enctype attribute
ENDHTML
enemies data
ENUM
equal to (==)
equal to
E_ALL
E_COMPILE_ERROR
E_COMPILE_WARNING
E_CORE_ERROR
E_CORE_WARNING
E_ERROR
E_NOTICE
E_PARSE
E_RECOVERABLE_ERROR
E_STRICT
E_USER_ERROR
E_USER_NOTICE
E_USER_WARNING
E_WARNING
error e-mail
error handling
Apache
custom
exceptions
full-featured
functions
PHP
troubleshooting and
try/catch method
error key
error logs
error types (PHP)
ErrorDocument directive
error.php
fatal
generating
‘headers already sent
heredoc closing tag line
custom
500: Internal Server Error
400: Bad Request
401: Authorization Required
403: Forbidden
404: Not Found
online list
simulating
not meeting conditions
parse
syntax
trapping
user input
dates/numbers
forgetting information
formatting
escaping
ethics
exceptions
explode()
extract()
fatal errors
feature_error.php
feedback for articles (CMS)
feedback
fetch()
fetch mode constants
fetchAll()
field types (MySQL)
choosing
date/time
numeric
reference list
string
fields
in forms
not null
null
Fifth Normal Form (5NF)
file/directory functions
filePro
$_FILES array
filters
IMG_FILTER_BRIGHTNESS
IMG_FILTER_COLORIZE
IMG_FILTER_CONTRAST
IMG_FILTER_EDGEDETECT
IMG_FILTER_EMBOSS
IMG_FILTER_GAUSSIAN_BLUR
IMG_FILTER_GRAYSCALE
IMG_FILTER_MEAN_REMOVAL
IMG_FILTER_NEGATE
IMG_FILTER_SELECTIVE_BLUR
IMG_FILTER_SMOOTH
Firebird
First Normal Form (1NF)
1NF (First Normal Form)
echo in
PHP/HTML in
500: Internal Server Error
5NF (Fifth Normal Form)
FIXED
FLOAT
floor()
for statement
403: Forbidden
foreach
table creation and
foreign keys
form element
form1.html
form2.html
form3.php
form4a.php
form4b.php
form4.php
date/time
string
formatting errors
formprocess1.php
formprocess2.php
formprocess3.php
forms
fields
for getting information
linking
multiple processing
parts of
passing variables through
user input
forum
Forum Administration page
FOUND_ROWS()
400: Bad Request
401: Authorization Required
403: Forbidden
404: Not Found
4NF (Fourth Normal Form)
Fourth Normal Form (4NF)
Friedl
frm_access_levels
frm_admin table
frm_admin.php
BBcode Administration
Board Administration
Forum Administration
User Administration
frm_bbcode
frm_compose.php
frm_config.inc.php
frm_edit_forum.php
frm_footer.inc.php
frm_forgotpass.php
frm_forum
frm_header.inc.php
frm_index.php
frm_login.php
frm_output_functions.inc.php
functionality
pagination and
show_topic()
frm_post_count
frm_posts
frm_search.php
frm_transact_admin.php
frm_transact_affirm.php
frm_transact_post.php
frm_transact_user.php
frm_useraccount.php
frm_users
frm_view_forum.php
frm_view_topic.php
FROM
FrontBase
full–featured error handler
array-sorting
ctype_*
customized
defined
efficient code and
is_*
methods v.
reference list
Apache/PHP
array
date/time
directory/file
error–handling
HTTP
image
logging
mail
mathematical
miscellaneous
MySQL
network
object handling
online
output buffer
PDO database interface
PHP configuration information
process
program execution
session functions
SimpleXML
string
URL
variable
type-validating
gallery.php
Gaussian blur
GD library
enabling
image types and
online information
testing
gd_info()
Geany
generate_ratings()
generating errors
GET method
$_GET superglobal array
get_director()
getimageinfo()
getimagesize()
get_leadactor()
get_movietype()
gettor methods
GIF
IMAGETYPE_GIF
support
global
Google Analytics
grayscale
greater than (›)
greater than or equal to (›=)
GUIs (graphical user interfaces)
administration
hashing
header()
problem code and
warning message and
header.php
‘headers already sent’ error
headers
Hello World
heredoc
closing tag line
syntax
hits/page views
hosting
third-party
administration GUIs
bandwidth usage
configuration ability
online companies (list)
pricing
server access
server control
site usage
supported databases
supported languages
htaccess files
creating
e-mail and
PHP and
references
HTML–Kit Tools
htpasswd
creating
drawbacks
HTTP Analyze
HTTP functions
HTTP headers
httpd.conf file
IBM DB2
if statements
nested
operators
semicolons and
if/else statements
IFF
IMAGETYPE_IFF
IGNORE
images
brightness
captions in
colorizing
contrast
copyrighted
edges
e-mailing
embedding text in
filters for
Gaussian blur
grayscale
logo (Movie Review site)
mean removal
negate color
selective blur
smoothing
thumbnails
uploading
image functions
image table
BMP
converting
GD library and
GIF
IFF
JB2
JP2
JPC
JPG
JPX
PNG
predefined constants
PSD
SWC
SWG
TIFF
WBMP
XBM
ImageBMP library classes
imagecopymerge()
imagecreatefrom* ()
ImageCreateFromBMP
imagecreatefrompng()
imagedestroy()
image_effect.php
imagefilter()
filters
imagegif()
imagejpeg()
imagepng()
images directory
imagettftext()
IMAGETYPE_BMP
IMAGETYPE_GIF
IMAGETYPE_ICO
IMAGETYPE_IFF
IMAGETYPE_JB2
IMAGETYPE_JP2
IMAGETYPE_JPC
IMAGETYPE_JPEG
IMAGETYPE_JPX
IMAGETYPE_PNG
IMAGETYPE_PSD
IMAGETYPE_SWC
IMAGETYPE_SWF
IMAGETYPE_TIFF_II
IMAGETYPE_TIFF_MM
IMAGETYPE_WBMP
IMAGETYPE_XBM
IMG_FILTER_BRIGHTNESS
IMG_FILTER_COLORIZE
IMG_FILTER_CONTRAST
IMG_FILTER_EDGEDETECT
IMG_FILTER_EMBOSS
IMG_FILTER_GAUSSIAN_BLUR
IMG_FILTER_GRAYSCALE
IMG_FILTER_MEAN_REMOVAL
IMG_FILTER_NEGATE
IMG_FILTER_SELECTIVE_BLUR
IMG_FILTER_SMOOTH
include statement
welcome message and
incrementing values
$value++
++$value
$value += 1
$value = $value + 1
indexes
infiniology.com
Informix
Ingres Database
initial login (BBS)
INNER JOIN
InnoDB
input element
check boxes
drop–down list boxes
password
radio buttons
submit
text
input testing
INSERT
INSERT INTO tablename VALUES
people
inserting records
Apache
help/information
on Linux
online information
testing
Apache on
MySQL on
PHP on
MySQL