Well, there a number of setbacks if you use a text file to store notes:
-> People can open your text file via your server and hence, it would make your login feature useless
->Also, keeping one part of your data separate from the rest, makes it difficult to manage it it later. (You will need to maintain 2 different aspects in your script to update/handle each)
That's why, it's highly suggested you stick to your database, even for the notes.
It's not very difficult to add and update a column to you database.
You will just need to execute a SQL query similar to this (say your table's name is 'memberdata' :
Code:
ALTER TABLE memberdata
ADD notes VARCHAR
Then to add data to the column:
Code:
INSERT into memberdata (notes)
values ("A very naughty employee");
Bookmarks