Skip to content

Instantly share code, notes, and snippets.

@RusAlex
Created May 23, 2013 09:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RusAlex/5634957 to your computer and use it in GitHub Desktop.
Save RusAlex/5634957 to your computer and use it in GitHub Desktop.
<table>
<tr>
<td>i</td>
<td>a</td>
<td>a</td>
</tr>
<tr>
<td>r</td>
<td>s</td>
<td>a</td>
</tr>
<tr>
<td>r</td>
<td>s</td>
<td>t</td>
</tr>
</table>
<?php
$file = fopen('/tmp/test.txt','r');
$content = fgetcsv($file,0,'|');
?>
<table>
<?php foreach($content as $row) : ?>
<tr>
<td><?=$row[0]?></td>
<td><?=$row[1]?></td>
<td><?=$row[2]?></td>
</tr>
<?php endforeach;?>
</table>
iaarstrs|rsatrs|rstarst
iaarstrs|rsatrs|rstarst
iaarstrs|rsatrs|rstarst
iaarstrs|rsatrs|rstarst
iaarstrs|rsatrs|rstarst
iaarstrs|rsatrs|rstarst
iaarstrs|rsatrs|rstarst
iaarstrs|rsatrs|rstarst
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment