Hey there,
I have following code:
[php]…
<tr>
<td><?php echo $row['nickname']; ?></td>
<td><?php echo $row['comment']; ?></td>
<td><?php echo $row['meaning']; ?></td>
</tr>
<?php endforeach; ?>
…[/php]
I need to get text from second td, so $row[‘comment’]; and put in into new variable so I can use it for further analyze.
For example, something like:
[php]$something = $row[‘comment’];[/php]
Note that this is from “foreach” loop, so I need all printed rows from that “td”, not just first one or something like that.
Thanks!