Tuesday, 17 October 2023

DATABASE CONNECTIVITY STEP BY STEP GUIDANCE FOR Beginners....


DATABASE CONNECTIVITY STEP BY STEP GUIDANCE FOR Beginners....

 DATABASE CONNECTIVITY To fetch data from a MySQL database and display it in an HTML table format, you'll need to use a server-side scripting language (such as PHP) to communicate with the database and generate the HTML content. Step-by-Step guidance is as follows.1.      Set ...

Read More
data structures and algorithms
data structures and algorithms Web Developer

Tuesday, 26 September 2023

Pointer to Function Concept in detail with example


Pointer to Function Concept in detail with example

 Pointer to Function:Like built in variables function also contains address.How to declare function pointer?return type (*fp)( );  // in this way you have to declare function pointer to hold ...

Read More
data structures and algorithms
data structures and algorithms Web Developer

Saturday, 22 April 2023

Implement the sample program demonstrating the use of Servlet.


Implement the sample program demonstrating the use of Servlet.

 Example: Create a database table ebookshop (book_id,book_title,book_author,book_price,quantity) using database like oracle/MySQL etc and display (use SQL select query ) the table content using servlet.Servlet Assignme ...

Read More
data structures and algorithms
data structures and algorithms Web Developer