ohh.. its been a long time, i did not visit my wordpress. Now im back.. hehe.. wazzzuup..
links
http://en.kioskea.net/faq/270-how-to-password-protect-your-files-and-folders—-putting a password in a folder..

http://www.wonderhowto.com/how-to-hack-websites-sql-injection-160710/
hacking a website
http://www.angusj.com/resourcehacker/
http://www.merawindows.com/Forums/tabid/324/forumid/15/threadid/6104/scope/posts/Default.aspx
http://www.instructables.com/id/Change-the-start-button-in-Windows-XP/step3/Use-Resource-Hacker/———-using resource hacker

User Manual
March 20, 2009
Testing
Test Plan
-Password
-Macros/Database
-Input Forms
-Open/Close/Print Command
User manual
-Intro to system
-how to load up the system
-Screenshots of
*Password Entry
*main Menu(or Switchboard)
*Each data entry form
*Any error
-Instruction for backup
-Troubleshootinh guide
Evaluation -Final Presentation
Adobe Photoshop Tutorial
http://www.grafx-design.com/phototut.html
http://www.tutorialized.com/tutorials/Photoshop/1
http://www.pegaweb.com/tutorials/web-design-and-adobe-photoshop-tutorials.htm
Database Query Commands
These commands work on Microsoft Access 2000/2003/2007
try it on other database system if you have time!
Also Try http://www.sql-tutorial.net for other commands.
SELECT gender AS SEX, AVG(age) AS AVERAGE_AGE
FROM Student
GROUP BY gender;
Select Commands
SELECT studNumber, studlastname, studfirstname
FROM Student;
——————
SELECT [tribe], studFirstname, studLastName
FROM Student
WHERE tribe=’cebuano’;
——————
SELECT [religion], studFirstname, studLastName
FROM Student
WHERE religion=’roman catholic’;
——————
SELECT [religion], studFirstname, studLastName
FROM Student
WHERE religion=’islam’;
——————
Join Command
SELECT student.studNumber, student.studLastname, student.studFirstname, subject.subject, subject.unit
FROM student, subject;
——————
Insert Command
INSERT INTO Student ( studlastname, studfirstname, studnumber )
VALUES (”Villasor”, “Jayson”, “1980″);
—————–
Delete Command
DELETE *
FROM Student
WHERE studLastname=’Villasor’;
—————-
Update Command
UPDATE Student SET studNumber = ‘1981′
WHERE studLastname=”villasor”;