A multi-dimensional array is sort of like a matrix in that it has rows and columns. You are getting close to how a database or spreadsheet works. Maybe later you can store the data in a MySQL table and read it and parse some HTML with the comic info in it. First things first though, figure out how arrays work.

Here is a simple explination of arrays:
[link|http://www.tizag.com/phpT/arrays.php|http://www.tizag.com/phpT/arrays.php]

Here is a section of the PHP manual on arrays:
[link|http://www.php.net/manual/en/language.types.array.php|http://www.php.net/m...e.types.array.php]

Keep in mind that the first item in an array can be referenced by the Integer index key 1, if you do not specify an index key it will be 0.

My PHP is rusty and I am trying to learn it myself, so I hope I get this right.

$comic[1]['title'] => "Never Give Them Your Real Name"
$comic[1]['image'] => "hd20060802.png"
$comic[1]['teaser'] => "Viktor makes a command decision."
$comic[2]['title'] => "A Plan, After a Fashion"
$comic[2]['image'] => "hd20060803.png"
$comic[2]['teaser'] => "Viktor claims to have a plan, but the details need work."
$comic[3]['title'] => "A Brief Tactical Assessment"
$comic[3]['image'] => "hd20060804.png"
$comic[3]['teaser'] => "Alex, Monk and Mark discuss the merits of Viktor's plan."

I replaced the comic1 etc with Integers. This is so that it can be referenced with a loop later on using an integer as a variable.

You might want to research the foreach statement:
[link|http://www.php.net/manual/en/control-structures.foreach.php|http://www.php.net/m...tures.foreach.php]

You might be able to loop through the array using foreach and print out each issue of your comic that way without using integers.

Using an Integer as a control you could loop through arrays like so:
[link|http://www.freewebmasterhelp.com/tutorials/php/4|http://www.freewebma...m/tutorials/php/4]

$number = 3;
$x = 0;
while ($x < $number) {
$comic = $x + 1;
echo "Comic $namenumber title is $comic[$x][title]
";
echo "Comic $namenumber image is $comic[$x][image]
";
echo "Comic $namenumber teaser is $comic[$x][teaser]
";
++$x;
}

I am not 100% sure of the img tag parsing, it has been a while since I did that. The forum here does not like the code I used to give an example of making one work in PHP so I removed it.

$number is the number of comics you entered.

$x is the control array that brings them up via the order you entered them.

The "++" is like you learned in C, it adds one to the value in $x before it is read.

I could research it for you more, but duty calls at home. I really want to learn these things as well, and I hope I pointed you in the right direction.