New Post: Sequentially storing files
Hi. Is it possible to sequentially storing files? for($i=0;$i<10;$i++) { $pExcel = new PHPExcel(); $pExcel->setActiveSheetIndex(0); $aSheet = $pExcel->getActiveSheet();...
View ArticleNew Post: Sequentially storing files
AFAIK you cannot send more than one excel file to "php://output". But for sure you can save on disk more than one excel file in the same script (removing header output from your example and sending...
View ArticleNew Post: setCellValueTypeByColumnAndRow: new function to worksheet.php
Try changes described in this issue: https://phpexcel.codeplex.com/workitem/19816 With them speed of setCellValueExplicitByColumnAndRow() is almost same as mine function.
View ArticleNew Post: einfostreet Publishes latest technology news,media,lifestyle news
einfostreet Publishes latest technology, news, media, lifestyle news, product launching news, many more information you will see on this blog. eInfoStreet is one of the leading software and technology...
View ArticleNew Post: Sequentially storing files
...And take these files in an archive that you send to the client Write directly in the archive... Perhaps, if the wrapper allows, which is not the case of zip://.
View ArticleNew Post: PHPExcel_Style_Alignment for merged cells exported to PDF
Hello. I need to create multiple column where the headers look something like this (please excuse the mad ASCII skillz):_________________ |_____header_____| |_sub 1__|__sub 2_| Obviously, the “header”...
View ArticleNew Post: XPatch/XMLimport
Hello, I have a quick question because I could not finde a reference in the documentation/on this website. In Google Spreadsheets there's a Xpath/Xmlimport function working like this:...
View ArticleNew Post: PDF Rendering with mPDF
Hello I have a problem and I think it's been solved ( already but with all searching I made on the project, I couldn't fix it : I want to render a PDF and save it on my server (after, a script send it...
View ArticleNew Post: Using PHP Excel to Generate Excel Report from SQL Database
I'm new with php. Can you explain how to use PHP Excel to generate excel report from SQL database. Basically it should work like this:Read the data from databaseTransfer all data in database to excel -...
View ArticleNew Post: Using PHP Excel to Generate Excel Report from SQL Database
A basic example : <?php $user='me'; $pass='mypassword'; $DataBase='mydatabase';//define the correct values // open the connexion to the databases server...
View ArticleNew Post: percent format
$objPHPExcel->setActiveSheetIndex(0)->setCellValue($celula, (float)$c9.'%');
View ArticleNew Post: How to export filtered results of a query to excel
Hi all, I have a page with a form to filter results. I have put an export button on the page. I want my users to be able to filter data and export only the results of that query (not the whole data in...
View ArticleNew Post: How to export filtered results of a query to excel
You can find a simplistic example here: https://phpexcel.codeplex.com/discussions/446306#post1054008 Write a complete table or only the result of a filter is exactly the same for PHPExcel, the...
View ArticleNew Post: How to export filtered results of a query to excel
Thanks for reply. In fact I've already tried the simplistic example but it gave error on Line18 and I couldn't find what to do. I checked the other link, pheeew. It seems I'm down at the mountain while...
View ArticleNew Post: How to export filtered results of a query to excel
I added $host='localhost'; to the beginnig and changed ['Field2')) to that ['Field2']) the error gone but the result.xls came blank.
View ArticleNew Post: How to export filtered results of a query to excel
Ok, I changed Field1 and 2 to the related table column names I got it listed. That's great. Now I can play with it like adding some formattings.But the biggest problem still continues. How can export...
View ArticleNew Post: graphs from excel template
Hello, I'm programming a library that uses a template with graphics that are filled dynamically from php. With PHPExcel only fill the cells that the chart will use. is it possible? I have done tests...
View ArticleNew Post: How to export filtered results of a query to excel
A little too fast in writing... Corrected. There actually is no restrictive clause in this query. Just add it, a simple matter... or not, depending on the case. As you give no details, I'll have to...
View ArticleNew Post: How to export filtered results of a query to excel
LWol, thanks for your blind help. I couldn't decide what detail I should give. So let me try to explain in detail now. On localhost I prepared a page with a form on the top that the user can filter...
View ArticleNew Post: graphs from excel template
I've been reading about this bug and it looks like I use excel5. I did a test with this code and it does not work. I download the template but I deleted the graph that existed in the template. I copy...
View Article