Database only allow one query at a time, for obvious reasons of security and plain old common sense.
"and it would slow down the database if i had to do a lot of mysql_query()\'s."
And you think doing more queries in one command somehow magically makes the database do less work?
The only thing slowing down is PHP because it has to issue a new query over and over.