Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <title>teszt</title>
- </head>
- <body>
- <?php
- if(($data=@file_get_contents('test.txt'))!==FALSE){
- foreach(explode(PHP_EOL,$data) as $line)if($line!=''){
- unset($split);
- if(($split=explode(';',$line))!==FALSE)$tables[$split[0]][]=array((isset($split[1])?$split[1]:''),(isset($split[2])?$split[2]:''),(isset($split[3])?$split[3]:''));
- }
- if(isset($tables))foreach($tables as $id => $table){
- ?>
- <table>
- <thead>
- <tr>
- <?php echo ' <th colspan="3">Tábla '.$id.'</th>'.PHP_EOL; ?>
- </tr>
- </thead>
- <tbody>
- <?php
- foreach($table as $line){
- ?>
- <tr>
- <?php
- foreach($line as $value)echo ' <td>'.$value.'</td>'.PHP_EOL;
- ?>
- </tr>
- <?php
- }
- ?>
- </tbody>
- </table>
- <br />
- <?php
- }
- }
- ?>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement