Hi I trying to print the content of a array.

This is the code:

while ($row = mysql_fetch_assoc($result)) {
    $pattern = '[<td[^>]*>(.*?)</td>]';
    $content = preg_split( $pattern, $row['introtext'], NULL );
    echo '<tr>';
    echo '<td align="center" valign="top" class="table-cursos-links">';
    echo  $n++; 
    echo '</td>';
    echo '<td align="center" valign="top" class="table-cursos-links">';
    echo  '<a target="_parent" href="http://cttcorp.hexasystems.com/index.php?option=com_content&view=article&id='.$row['id'].':'.$row[alias].'&catid='.$row['catid'].'">'.$row['title'].' </a>'; 
    echo '</td>';
    echo '<td align="center" valign="top" class="table-cursos-links">'. $content[2] .'</td>';
    echo '</tr>'; 

It doesn't print anything. Any Idea?

link|improve this question

47% accept rate
I know the problem is the regex, basically I just want the text inside the <td> and </td> – Jean Dec 8 '11 at 23:52
feedback

1 Answer

know the problem is the regex, basically I just want the text inside the <td> and </td>

Well then you have the right regex, but are using it wrong. When using preg_split everything matched by the regex will be removed. If your $row['introtext'] contained something like _<td>data</td>_ then you will receive an array with two empty strings or whitespace or other leftovers.

Use preg_match instead.

preg_split( $pattern, $row['introtext'], $match );

print $match[1];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.