On Nov 15, 2007 5:12 PM, Juan Marcelo Rodríguez <[EMAIL PROTECTED]>
wrote:

> Yes, I made a mistake in the first sentence.
>
> The code is :
> [...]
>
> foreach ($equipos as $key => $val){
>
> echo "<tr><td>";
> echo "1" . "</td><td>";  // I would like to add the counter here
> reeplacing
> "1"


echo "<tr><td>".($key+1)."</td><td>";

This is assuming $key starts at 0 and increments by 1 each iteration....
However, if you can't assume that, just have a separate counter:

<?php
$counter = 0;
foreach ($a as $b => $c) {
    echo "<tr><td>".(++$counter)."</td><td>";
...
}

HTH
~Philip

Reply via email to