Skip to content

Instantly share code, notes, and snippets.

View nazrulrafi's full-sized avatar

nazrul rafi nazrulrafi

View GitHub Profile
@nazrulrafi
nazrulrafi / unlink.php
Last active July 26, 2025 07:22
php file upload and delete
@nazrulrafi
nazrulrafi / index.php
Last active July 13, 2025 07:18
rollback
<?php
$serverName = "localhost";
$userName = "root";
$password = "";
$dbName = "bank_account";
$conn = new mysqli($serverName, $userName, $password, $dbName);
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
@nazrulrafi
nazrulrafi / DBCSV.php
Created July 12, 2025 07:57
Flat File Databse (CSV)
<?php
namespace DAL;
class DBCSV{
private $fileName="";
private $separation = ",";
protected $records = [];
protected $headerFields = [];
public function __construct($fileName){