Ok I decided I want to use MySQL, there is only a $10 setup fee with my hosting service, so not a big deal.
I was wondering if there are any functions already written in PHP which simplify the getting/setting of data. for example:
data_get( 'user', 'varname' ); //will get the value of varname from the user database
data_set( 'user', 'varname', 'value' ); //likewise, this would set that same variable to value
Note that the 'user' name im talking about is acctually sepecific to each person that will be using my pages becuase they will ALL have completely different data. Also, arrays are VERY important to what I wanna do, so hopefully those get and set functions can extract arrays from the mySQL table, or if it had to have functions like data_array_get and data_array_set, that would be fine also.
If anyone knows of a PHP script that already does something like this PLEASE let me know, I'm not highly interested in learning all about mySQL, and a pre-written interface like this would be a great help. If there is nothing out there, would anyone be willing to help me write one

? I do know how to program, this is just my first time working with php and mysql, so its still very fuzzy.
THANKS!