ben bunu tek satır degilde sütun sütun satır satır tablo şeklinde yapmak ısdıyorum nasıl yaparım ?
<?php
$feed = file_get_contents("");
$xml = new SimpleXMLElement($feed);
$sayac = "1";
$limit = "5000";
foreach ($xml -> channel -> item as $veri){
if ($sayac <= $limit){
$link = $veri -> link;
$text= $veri -> title;
$text=str_replace("Finished", "<b>MS</b>", $text);
$text=str_replace("[CDATA[", "", $text);
$text=str_replace("Half Time", "<b><font color=red>IY</b></font>", $text);
$text=str_replace("Cancelled", "<font color=red><b>Ert.</b></font>", $text);
$text=str_replace("90'", "<b><font color=red>90+</b></font>", $text);
$text=str_replace("0'", "<b><font color=green>0'</b></font>", $text);
$text=str_replace("1'", "<b><font color=green>1'</b></font>", $text);
$text=str_replace("2'", "<b><font color=green>2'</b></font>", $text);
$text=str_replace("3'", "<b><font color=green>3'</b></font>", $text);
$text=str_replace("4'", "<b><font color=green>4'</b></font>", $text);
$text=str_replace("5'", "<b><font color=green>5'</b></font>", $text);
$text=str_replace("6'", "<b><font color=green>6'</b></font>", $text);
$text=str_replace("7'", "<b><font color=green>7'</b></font>", $text);
$text=str_replace("8'", "<b><font color=green>8'</b></font>", $text);
$text=str_replace("9'", "<b><font color=green>9'</b></font>", $text);
$text=str_replace("0", "<b><font color=green>0</b></font>", $text);
$text=str_replace("1", "<b><font color=green>1</b></font>", $text);
$text=str_replace("2", "<b><font color=green>2</b></font>", $text);
$text=str_replace("3", "<b><font color=green>3</b></font>", $text);
$text=str_replace("4", "<b><font color=green>4</b></font>", $text);
$text=str_replace("5", "<b><font color=green>5</b></font>", $text);
$text=str_replace("6", "<b><font color=green>6</b></font>", $text);
$text=str_replace("7", "<b><font color=green>7</b></font>", $text);
$text=str_replace("8", "<b><font color=green>8</b></font>", $text);
$text=str_replace("9", "<b><font color=green>9</b></font>", $text);
$text=str_replace(":", "<b><font color=red>:</b></font>", $text);
echo "$text <br>";
}
$sayac++;
}
?>