Unit 2: Advanced PHP and File Management

Unit 2: Advanced PHP and File Management Advanced PHP and File Management 2.1 File Handling and Directories 2.1.1 Including files using include and require 2.1.2 File operations: fopen(), fread(), fwrite(), fclose() 2.1.3 File upload using $_FILES and move_uploaded_file() 2.1.4 File download using PHP headers 2.1.5 Directory operations: opendir(), readdir(), mkdir(), rmdir() 2.2 Forms, Filters, and […]

Unit 1: Core PHP Programming.

Unit 1: Core PHP Programming. Core PHP Programming. 1.1 Introduction to PHP 1.1.1 Understanding the role of PHP in server-side web development 1.1.2 History and evolution of PHP 1.1.3 Installation and configuration using XAMPP/WAMP 1.1.4 Setting up the development environment using Visual Studio Code 1.2 Basic PHP Syntax and Variables 1.2.1 PHP script structure and […]

Unit-5: Data Visualization using dataframe:

Unit-5: Data Visualization using dataframe: Data Visualization using dataframe: NOTES 5.1 Data Visualization using DataFrame Data visualization is the graphical representation of data. In Python, matplotlib.pyplot is widely used for creating 2D charts like line plots, bar graphs, scatter plots, etc. It works well with Pandas DataFrames and NumPy arrays. ✅ 5.1 Importing matplotlib.pyplot and […]

Write a program to find greater between 2 numbers.

1. Write a program to find greater between 2 numbers. PROGRAM no1 = int(input(“Enter the First number :- “))no2 = int(input(“Enter the Second number :- “))if(no1 > no2):print(“Number 1 is Big……”)else:print(“Number 2 is Big……”) OUTPUT:- 

Unit-4: Python Interaction with text and CSV

Unit-4: Python Interaction with text and CSV Unit-4: Python Interaction with text and CSV 4.1 File handling ( text and CSV files) using CSV module : 4.1.1 CSV module , File modes: Read , write, append 4.2 Important Classes and Functions of CSV modules: 4.2.1 Open(), reader(), writer(), writerows(), DictReader(),DictWriter() 4.3 Dataframe Handling using Panda […]

Unit-3: Python interaction with SQLite:

Unit-3: Python interaction with SQLite: Python interaction with SQLite: 3.1 Module: Concepts of module and Using modules in python.3.1.1 Setting PYTHONPATH, Concepts of Namespace and Scope 3.1.2 Concepts of Packages in python 3.2 Importing sqlite3 module 3.2.1 connect () and execute() methods. 3.2.2 Single row and multi-row fetch ( fetchone(), fetchall()) 3.2.3 Select, Insert, update, […]