Create Button Client Server

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 3

1

Nihar Senjaliya
CIS355
Prog02

CREATE BUTTON
CLIENT SERVER

1) https://csis.svsu.edu/~nrsenjal/crud_oo_complete/customers.php 2) list_records()

3) list the records

4) Click create button 5) cutomer.php


6) customer.class.php
7) create_record()

8) Display create form

9) Enter the record

10) Click create button


11)fieldsAllValid () if it true
12)insertinsert_db_record()
13)list_record()

14)list the record

READ BUTTON
CLIENT SERVER
1)Click read button 2)customer.php
3)cutomer.class.php

4)select_db_record()

5) show the customer detail


6) click back button 7)list_record()
8) list the records

UPDATE BUTTON
2
Nihar Senjaliya
CIS355
Prog02

CLIENT SERVER
1) click update button 2) cutomer.php

3)cutomer.class.php

4)update_record()

5) select_db_record()

6)show the update form

7) enter the updated information

8)click update button 9)update_db_record()

10)field_AllValid() if true

11)list_records()

12) list the record(s)

DELETE BUTTON
CLIENT SERVER
1) click delete button 2) cutomer.php

3)cutomer.class.php

4)delete_record()

5) select_db_record()

6)show the delete conformation form

7)click delete button


8)delete_db_record()

9)list_records()
3
Nihar Senjaliya
CIS355
Prog02

10)list record(s)

BACK BUTTON (for delete and update)


CLIENT SERVER
1) click back button 2)list_records()

3)list the recored(s)

You might also like