The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#2
|
||||
|
||||
![]()
I was able to get this to work, however I had to adjust the sideblock width to 1350 px to accomadate the width of the table. Your code was fine, you just need to return the html to the widget instead of echo.
Code:
ob_start(); echo '<table>'; $f = fopen("https://www.fdic.gov/bank/individual/failed/banklist.csv", "r"); while (($line = fgetcsv($f)) !== false) { echo '<tr>'; foreach ($line as $cell) { echo '<td>' . htmlspecialchars($cell) . '</td>'; } echo '</tr>'; } fclose($f); echo '</table>'; $html = ob_get_clean(); return $html; |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|