Jump to content

Search the Community

Showing results for tags 'phpexcel'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Development
    • HTML Coding
    • JavaScript
    • PHP
    • CMS
    • Database
    • Web Server
    • Web-site Development
    • Internet Marketing, SEO
  • Library
    • Tricks and solutions
    • Books
  • Commercial services
    • Freelance
    • Job
    • Goods and Services
  • Our Forum
    • Flame
    • Contests
    • Feedback and Ideas

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Web site


Telegram


Signal


Viber


Skype


From


Interests

Found 1 result

  1. Здравствуйте! Если таблица, которую получаем из .xls файла с помощью библиотеки PHPexcel. Эту таблицу мы подгружаем в див с фиксированной высотой. Вопрос вот в чем - как можно при достижении заданной высоты блока переносить остаток таблицы на следующий подобный див? Вот таким образом получаю таблицу: <?php require_once ('PHPExcel/Classes/PHPExcel/IOFactory.php'); // Открываем файл $xls = PHPExcel_IOFactory::load('test.xls'); // Устанавливаем индекс активного листа $xls->setActiveSheetIndex(0); // Получаем активный лист $sheet = $xls->getActiveSheet(); echo "<table class='table table-striped table-bordered sorted_table'><tbody>"; for ($i = 2; $i <= $sheet->getHighestRow(); $i++) { echo "<tr>"; $nColumn = PHPExcel_Cell::columnIndexFromString( $sheet->getHighestColumn()); for ($j = 0; $j < $nColumn; $j++) { $value = $sheet->getCellByColumnAndRow($j, $i)->getValue(); echo "<td><input type='text' value='$value'></td>"; } echo "</tr>"; } echo "</tbody></table>"; ?> Спасибо!
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy