Hi again,
when i start of php a week ago by reading the manual i know the return from mysql_query is value indication whether the query is success or not (like non-zero for true)
but at the moment, it has been returning something like this to me: Resource id#2 <-------- what is thiss???
what's going on?
thanksss
mysql_query does not just return a result code, it returns either false, or a pointer to the results from the query. This pointer can be used to fetch the data from the database.
Guess you need to re-read that part of the manual :-)