Re: [PHP] export data to a ms excel file using php

2008-10-23 Thread Ashley Sheridan
On Thu, 2008-10-23 at 13:05 +0530, gopi krishnan wrote: > Hi, > > Could any one explain better. I need just the grid lines for the excel > sheet. I already tried that but it shows the linings only > to the valued cells. But i need to show the grid as in MS Excel. I tried > TEXT/XML > but i get th

Re: [PHP] export data to a ms excel file using php

2008-10-23 Thread Jim Lucas
gopi krishnan wrote: > Dear all, > > I found the solution for my problem. > try this core... > > --- > > #Setting MIME Type in header > /*header("Content-Type: application/vnd.ms

RE: [PHP] export data to a ms excel file using php

2008-10-23 Thread Boyd, Todd M.
> -Original Message- > From: Yeti [mailto:[EMAIL PROTECTED] > Sent: Thursday, October 23, 2008 9:36 AM > To: gopi krishnan; PHP - General > Subject: Re: [PHP] export data to a ms excel file using php > > I'm not into MS Office, but isn't there some weird O

Re: [PHP] export data to a ms excel file using php

2008-10-23 Thread Yeti
I'm not into MS Office, but isn't there some weird Office XML format since Office 2007? At MSDN I could find a nice description of the wannabe standard [1]. So if the new Excel can take XML it wouldn't be too difficult to export the data I guess. [1] http://msdn.microsoft.com/en-us/library/aa33820

Re: [PHP] export data to a ms excel file using php

2008-10-23 Thread gopi krishnan
Dear all, I found the solution for my problem. try this core... --- ';*/ # Then we fetch rows in a loop until we're done while ($result = oci_fetch_array($stmt)) { /*echo "gopi

RE: [PHP] export data to a ms excel file using php

2008-10-23 Thread Jay Blanchard
[snip] Could any one explain better. I need just the grid lines for the excel sheet. I already tried that but it shows the linings only to the valued cells. But i need to show the grid as in MS Excel. I tried TEXT/XML but i get the following error [/snip] http://evolt.org/node/26896 Part of the

Re: [PHP] export data to a ms excel file using php

2008-10-23 Thread gopi krishnan
Hi, Could any one explain better. I need just the grid lines for the excel sheet. I already tried that but it shows the linings only to the valued cells. But i need to show the grid as in MS Excel. I tried TEXT/XML but i get the following error --- The XML page cannot be

Re: [PHP] export data to a ms excel file using php

2008-10-22 Thread Ashley Sheridan
On Wed, 2008-10-22 at 22:04 +, [EMAIL PROTECTED] wrote: > The easiest solution is to output CSV, and use the Content-type to force it > to be eXcel. > > > > Excel will suck the CSV in just fine, with minimal hassle by the user. > > > > It also makes a file that is useful for many more ap

Re: [PHP] export data to a ms excel file using php

2008-10-22 Thread ceo
The easiest solution is to output CSV, and use the Content-type to force it to be eXcel. Excel will suck the CSV in just fine, with minimal hassle by the user. It also makes a file that is useful for many more applications, not just Excel. -- PHP General Mailing List (http://www.php.net/)

Re: [PHP] export data to a ms excel file using php

2008-10-22 Thread Nitsan Bin-Nun
And what about users who use office version < 2003 (which do NOT support .xml charts) You can google a bit, I'm pretty sure I have already encountered a class for this case at Manuel's site (phpclasses). Nitsan On Wed, Oct 22, 2008 at 9:00 PM, Ashley Sheridan <[EMAIL PROTECTED]>wrote: > On Wed,

Re: [PHP] export data to a ms excel file using php

2008-10-22 Thread Ashley Sheridan
On Wed, 2008-10-22 at 11:20 -0700, Jim Lucas wrote: > [EMAIL PROTECTED] wrote: > > Hi, > > > > I have tried your MS-Excel MIME type in PHP. But am facing a small problem. > > I can't get the grid lines as look like in normal Excel file. > > > > Am using windows XP, Internet explorer 6.0, MS Exc

Re: [PHP] export data to a ms excel file using php

2008-10-22 Thread Jim Lucas
[EMAIL PROTECTED] wrote: > Hi, > > I have tried your MS-Excel MIME type in PHP. But am facing a small problem. I > can't get the grid lines as look like in normal Excel file. > > Am using windows XP, Internet explorer 6.0, MS Excel 2003 > > Thanks in advance.-- Jim Lucas wrote : > abderrazzak

Re: [PHP] export data to a ms excel file using php

2007-12-19 Thread Richard Lynch
On Tue, December 18, 2007 3:05 am, abderrazzak nejeoui wrote: > can you help me to export data to a ms excel file using php. i tried > to > export them to an html format and change the extension to .xls that's > work > but i have lost the formatting > > excel and the navigator doesn't interpret my

Re: [PHP] export data to a ms excel file using php

2007-12-18 Thread Chris
abderrazzak nejeoui wrote: can you help me to export data to a ms excel file using php. i tried to export them to an html format and change the extension to .xls that's work but i have lost the formatting excel and the navigator doesn't interpret my code in the same why (celles are not in the sa

Re: [PHP] export data to a ms excel file using php

2007-12-18 Thread Jim Lucas
Jim Lucas wrote: > abderrazzak nejeoui wrote: >> can you help me to export data to a ms excel file using php. i tried to >> export them to an html format and change the extension to .xls that's work >> but i have lost the formatting >> >> excel and the navigator doesn't interpret my code in the sam

Re: [PHP] export data to a ms excel file using php

2007-12-18 Thread Jim Lucas
abderrazzak nejeoui wrote: > can you help me to export data to a ms excel file using php. i tried to > export them to an html format and change the extension to .xls that's work > but i have lost the formatting > > excel and the navigator doesn't interpret my code in the same why (celles > are not

RE: [PHP] export data to a ms excel file using php

2007-12-18 Thread Jay Blanchard
[snip] can you help me to export data to a ms excel file using php. i tried to export them to an html format and change the extension to .xls that's work but i have lost the formatting excel and the navigator doesn't interpret my code in the same why (celles are not in the same size) [/snip] Here

Re: [PHP] export data to a ms excel file using php

2007-12-18 Thread Jason Pruim
On Dec 18, 2007, at 4:05 AM, abderrazzak nejeoui wrote: can you help me to export data to a ms excel file using php. i tried to export them to an html format and change the extension to .xls that's work but i have lost the formatting excel and the navigator doesn't interpret my code in the

RE: [PHP] export data to a ms excel file using php

2007-12-18 Thread Edward Kay
> can you help me to export data to a ms excel file using php. i tried to > export them to an html format and change the extension to .xls that's work > but i have lost the formatting Save the data from PHP in comma separated value (CSV) format. Edward -- PHP General Mailing List (http://www.p

Re: [PHP] export data of html table

2007-08-26 Thread Richard Lynch
On Wed, August 22, 2007 1:09 am, Vanessa Vega wrote: > i have a table generated using PHP & javascript...the data on that > table > came from a form where several > data was inputted... I want > to let them see a preview of the data they entered, so i put a link or > button that when clicked, will

RE: [PHP] export data of html table

2007-08-22 Thread Jan Reiter
Hi! I'm not quite sure if I got you right, but if you want a simple button to print the current web-page use the browsers built-in printing function. Just link to javascript:window.print(); to bring up the printing dialogue. Is this a simple html-table, or is it something special? Or render it int

Re: [PHP] Export data with PHPMyAdmin

2006-04-21 Thread Jochem Maas
phpmyadmin have their own support channels. as do mysql. William Stokes wrote: Hello, I'm using PhpMyadmin 2.6.3 on operators server for DB management. I would from time to time like to export the whole DB to text file and move the DB to my own test server. Problem is that when I dump the wh

Re: [PHP] EXPORT DATA

2005-12-14 Thread Miles Thompson
First of all, check the PostgreSQL docs on loading data - there may be a native method you can call. Otherwise you normally export Excel to a .csv file and import that. How? Never done it, but how about a combination of fgetcsv() and pg_copy() or pg_insert()? There may be a tool out there o

Re: [PHP] EXPORT DATA

2005-12-13 Thread Zareef Ahmed
- Original Message - From: "Aftab Alam" <[EMAIL PROTECTED]> To: Sent: Tuesday, December 13, 2005 11:20 PM Subject: [PHP] EXPORT DATA > Hi all, > > How can i export excel data to PostgresSQL using PHP. > http//ww.phpclasses.org is good place to search. you can go there. Zareef Ahmed >

Re: [PHP] Export data from word ducument

2004-06-10 Thread Tom Rogers
Hi, Thursday, June 10, 2004, 11:53:46 PM, you wrote: RD> Someone,can you help me ? RD> I need exported pictures that are inserted in word document to the jpg RD> (gif,tiff,bmp) format. RD> Is it possible and how ? RD> Thanks you very much RD> Roman use the "Save as Web Page" option in Ms word

RE: [PHP] Export data

2003-12-01 Thread Jay Blanchard
[snip] Is it possible to export some data to MSOffice format ( .doc and .xls ) , OOffice ( .sxw and sxc ) or .rtf format with PHP [/snip] Yes, it is. http://homepages.tesco.net/~J.deBoynePollard/FGA/questions-with-yes-or-n o-answers.html -- PHP General Mailing List (http://www.php.net/) To unsub

Re: [PHP] export data to text file

2002-09-28 Thread Curtis Gordon
Why not write to a file on the server and generate a link to it? Collect info > write file > user downloads file Curtis Diana Castillo wrote: >okay, how can I write a file in csv format either to the browser or to the >server? If I use the Mysqladmin page I get all the fields, I just want some

RE: [PHP] export data to text file

2002-09-28 Thread John W. Holmes
> okay, how can I write a file in csv format either to the browser or to the > server? If I use the Mysqladmin page I get all the fields, I just want > some > of them. > Diana You can use the SELECT ... INTO OUTFILE query like someone else mentioned, and then use passthru() to send the file to th

Re: [PHP] export data to text file

2002-09-28 Thread Diana Castillo
okay, how can I write a file in csv format either to the browser or to the server? If I use the Mysqladmin page I get all the fields, I just want some of them. Diana -- See my web page: http://www.netrox.net/%7Ecastillo/ "Todd Pasley" <[EMAIL PROTECTED]> escribió en el mensaje [EMAIL PROTECTED]">

RE: [PHP] export data to text file

2002-09-28 Thread Todd Pasley
Hi If what you mean is... you want to be able to write to a file on the browsers computer, then please let us know if you find a way. To my knowledge, there is not any intended way to do this... you wouldn't want any old website to be able to manipulate your hard drive would you? It might be po