
Originally Posted by
neigyl_noval
You mean to/from database? or to/from desktop?
If you mean database:
(1) Save -- and u're using mysql to access database thru php, use :
mysql_query("INSERT INTO user_table (name, age) VALUES ('skeptic_rob', 30)");
(2) Delete:
mysql_query("DELETE FROM user_table WHERE name='skeptic_rob'");
(3) Edit
mysql_query("UPDATE user_table SET age=31 WHERE name='skeptic_rob'");
(4) Retrieve & Search
mysql_query("SELECT * FROM user_table WHERE name='skeptic_rob'");
If you mean functions in accessing from you desktop:
I recommend javascript for these (pop-up dialog boxes, etc) and use the above for storing/retrieving/etc
+1.
Yep. In-ana ra ka sayon. Ang lisod ani kay if mu-move ka into intermediate stuff like input sanitation, error trapping, etc. Advanced stuff includes code optimization, better algorithms.