Ok, I have a large member database... and members can check messages left in their inbox.
The message table looks something like this.
| id | fromID | toID | subject | message_text |
What I'm trying to do is send a mass message out to all the users... but I find it would be too much to Insert a row for EACH member so that the message can show in their inbox.
for example.. if I have 20,000 member... I would have to insert 20,000 rows into the message table.
Is there a better way to do this without inserting a row for each member?