X7ROOT File Manager
Current Path:
/home/remnbtxp/public_html/members/ajax
home
/
remnbtxp
/
public_html
/
members
/
ajax
/
📁
..
📄
add_donations.php
(1.29 KB)
📄
add_expenses.php
(1.13 KB)
📄
add_invoice.php
(1.18 KB)
📄
add_member.php
(3.38 KB)
📄
add_notes.php
(538 B)
📄
add_task.php
(1.22 KB)
📄
delete_donations.php
(673 B)
📄
delete_expenses.php
(664 B)
📄
delete_invoice.php
(664 B)
📄
delete_member.php
(1.09 KB)
📄
delete_notes.php
(0 B)
📄
delete_task.php
(645 B)
📄
edit_donations.php
(1.47 KB)
📄
edit_expenses.php
(2.71 KB)
📄
edit_invoice.php
(1.35 KB)
📄
edit_member.php
(3.84 KB)
📄
edit_notes.php
(0 B)
📄
edit_task.php
(1.12 KB)
📄
error_log
(5.43 KB)
📄
fetch_members.php
(932 B)
📄
get_expense_details.php
(826 B)
📄
get_member.php
(809 B)
📄
get_member_details.php
(312 B)
📄
get_notes.php
(468 B)
📁
qw
📄
submit_member.php
(3.46 KB)
Editing: add_notes.php
<?php // Include your database connection file require_once('../config.php'); $member_id = $_POST['member_id']; $note = $_POST['note_title']; $note = $_POST['note']; $sql = "INSERT INTO member_notes (member_id,note_title, note, created_at) VALUES (?, ?)"; $stmt = $conn->prepare($sql); $stmt->bind_param("is", $member_id, $note); if ($stmt->execute()== TRUE) { header('Location: /members/manage_notes.php'); } else { echo "Error: " . $sql . "<br>" . $conn->error; } $stmt->close(); $conn->close(); ?>
Upload File
Create Folder