ok, thanks, i've been reading these and a few other bits and pieces related to DATE_ADD and could figure out that this :
mysql_select_db($database_to_octo, $to_octo);
$query_rsdate = "SELECT DATE_ADD(stampdate ,INTERVAL (1-MONTH(stampdate)+1) MONTH) FROM users";
is a step forward towards what I need to do, as the way I understand it, this will add 1 month to my $stampdate
Ultimately, I'd like to replace the +1 with:
+"$package_month"
"$package_month" being a value from 1 to 12 but stored in a different table : packages
i hope this will be possible and that $query_rsdate can retrieve a value from another table to do what I describe.
But thats another step I guess,
My immediate concern (I know it sounds daft..) is how do I get my $query_rsdate to print the result on my page? since I'm not just retieveing a row from my database, but a modified one?
thanks,
Vinny