Led matrix sign

I see people creating 9x9 panels and lighting each individual led with using minimal ports on the Arduino.
I've tried to find this on Google but I don really know what its called.

I'm looking to make a 12x24 led sign or bigger.

I am using the Arduino mega 2560, but I'd like to be able to use an arduino uno

if someone is able to help me, could you also explain the why and how? I'm eager to learn, and not just copy!

The key is multiplexing.
You need something to source current to the anodes.
You need something to sink current from the cathodes.
A straightforward way is to have the anodes connected in rows 'across' the display, and cathodes connected in columns 'down' the array.
Then drive all the anodes, sink from 1 cathode for 1/30/# of columns in mS. Turn off cathode.
Send out next set of anode info, turn on cathode, hold, turn off cathode.
Repeat for all columns.
Shift register like cd74AC164 can source 24mA of current. MOSFET like AOI516 can sink Lots of current for each column.

Use SPI.transfer to send the data to the anode shift register and to cathode shift registers with AOI516 as output buffer.

This board I offer has 96 anode drives and 9 cathode transistors; 7 more transistors can added externally (extra IO from cathode shift registers are broken out, just add the header and wire them up.
(hmm, looks like I need to fix the schematic link).
http://www.crossroadsfencing.com/BobuinoRev17/

Look up Charlieplexing

That would seem a bit complicated for a 12x24 sign.

The nerdkits site has many good tutorial videos.

Here is a project/tutorial on charlieplexing for 120 LEDs:
http://www.nerdkits.com/videos/ledarray2/

Here is a project for 5x24 sign.
http://www.nerdkits.com/store/NKLEDARRAY001/

And then using multiple of these to make something even bigger:
http://www.nerdkits.com/videos/multipanel_spi_ledarray/

--- bill