Hey there,
I have following code:
....
<?php foreach ($data as $row) : ?>
<tr>
<td><?php echo $row['nickname']; ?></td>
<td><?php echo $row['comment']; ?></td>
<td><?php echo $row['meaning']; ?></td>
</tr>
<?php endforeach; ?>
...
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:
$something = $row['comment'];
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!