I have a PHP file that i want to create a table for it..
Php file gets an information from another website (Such as RSS) and I want to put it in my website and i dont know how to make table for a PHP file..
this is my code:
<?php
$content = file_get_contents('http://www.mazanex.com/');
preg_match('#<div id="secondaryContent">(.*)<div class="counter t13" #', $content, $match);
$new_content = $match[1];
echo $new_content;
?>

New Topic/Question
Reply



MultiQuote







|