0% found this document useful (0 votes)
25 views

Create Button Client Server

1) The document outlines the process for performing CRUD operations on a customer database using a client-server model. It describes the steps for creating, reading, updating, and deleting customer records. 2) For each operation (create, read, update, delete), it lists the interactions between the client and server. The server performs the necessary functions like querying the database, validating input, and updating records. 3) Common steps are displaying forms, validating input, performing the database operation, and refreshing the record list. A back button returns the user to the record list after delete or update.

Uploaded by

Safe Rabbit
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
25 views

Create Button Client Server

1) The document outlines the process for performing CRUD operations on a customer database using a client-server model. It describes the steps for creating, reading, updating, and deleting customer records. 2) For each operation (create, read, update, delete), it lists the interactions between the client and server. The server performs the necessary functions like querying the database, validating input, and updating records. 3) Common steps are displaying forms, validating input, performing the database operation, and refreshing the record list. A back button returns the user to the record list after delete or update.

Uploaded by

Safe Rabbit
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 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