<?xml version="1.0" encoding="UTF-8"?>

<rss version="2.0" xmlns:blogChannel="http://backend.userland.com/blogChannelModule">

<channel>
<title>PHP read excel template? in Webmasters and Developers</title>
<link>http://www.dslreports.com/forum/r21520804</link>
<description></description>
<language>en</language>
<pubDate>Sun, 29 Nov 2009 00:52:10 EDT</pubDate>
<lastBuildDate>Sun, 29 Nov 2009 00:52:10 EDT</lastBuildDate>

<item>
<title>Re: PHP read excel template?</title>
<link>http://www.dslreports.com/forum/remark,21528070</link>
<description><![CDATA[<A HREF="/useremail/u/1315094"><b>Shark_615</b></A> : If the sheets are that big and complex then the script will time out as using Excel naively on PHP is slow; brutally, noticeably slow. COM is basically a windows thing that allows apps to talk to other apps... If you want to try it start:<br><br>&raquo;<A HREF="http://ca.php.net/manual/en/book.com.php" >ca.php.net/manual/en/book.com.php</A><br>&raquo;<A HREF="http://devzone.zend.com/article/3336-Reading-and-Writing-Spreadsheets-with-php" >devzone.zend.com/article/3336-Re&middot;&middot;&middot;with-php</A><br><br>Non COM option that requires PHP5:<br>&raquo;<A HREF="http://www.eephp.com/" >www.eephp.com/</A><br><br>haven't used it...yet... but if you find success with it let me know. ]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,21528070</guid>
<pubDate>Thu, 04 Dec 2008 16:24:18 EDT</pubDate>
</item>

<item>
<title>Re: PHP read excel template?</title>
<link>http://www.dslreports.com/forum/remark,21527671</link>
<description><![CDATA[<A HREF="/useremail/u/246096"><b>yock</b></A> : I presume that "can't" is because of looming year-end festivities?]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,21527671</guid>
<pubDate>Thu, 04 Dec 2008 15:20:22 EDT</pubDate>
</item>

<item>
<title>Re: PHP read excel template?</title>
<link>http://www.dslreports.com/forum/remark,21527596</link>
<description><![CDATA[<A HREF="/useremail/u/825167"><b>johnnyboyct</b></A> : Well thats the goal, and Ive done 4 of 5 sheets, but the last sheet is a nightmare. Ive recreated 80% of it with ajax and JS, but really its overkill. They cant address the real issues atm so I end up recreating a flawed spreadsheet...<br><small>--<br><A HREF="http://www.MilestoneMultimedia.com">Connecticut  Web Design and Development</a></small>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,21527596</guid>
<pubDate>Thu, 04 Dec 2008 15:08:25 EDT</pubDate>
</item>

<item>
<title>Re: PHP read excel template?</title>
<link>http://www.dslreports.com/forum/remark,21527183</link>
<description><![CDATA[<A HREF="/useremail/u/246096"><b>yock</b></A> : Excel spreadsheets are limited to 65,535 lines, but I get your point. In all honesty, Excel shouldn't be levereged in this way. Though it is technically capable, it isn't designed for highly complex and/or mission critical financial calculations. I've seen entire accounting departments running on Excel/VBA solutions, but that doesn't make it right.<br><br>If you're already producing the input data for this application, why not implement a web application that replaces this spreadsheet entirely?]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,21527183</guid>
<pubDate>Thu, 04 Dec 2008 13:53:38 EDT</pubDate>
</item>

<item>
<title>Re: PHP read excel template?</title>
<link>http://www.dslreports.com/forum/remark,21527034</link>
<description><![CDATA[<A HREF="/useremail/u/825167"><b>johnnyboyct</b></A> : Not really, <br><br>Right now, they use a spreedsheet for this big long project process that consists of about 5 tabs. My app does 4 of 5.<br><br>But there's a ton of calculations on the next tab of the sheet that the web app doesn't do. <br><br>Id like to read the file with formatting, and calcs, and just fill in the blanks. The only way I have found so far is to:<br><br>in excel output the sheet as XML<br>Regenerate that xml with my blanks filled in<br><br>But its like 100000 lines :(<br><small>--<br><A HREF="http://www.MilestoneMultimedia.com">Connecticut  Web Design and Development</a></small>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,21527034</guid>
<pubDate>Thu, 04 Dec 2008 13:30:12 EDT</pubDate>
</item>

<item>
<title>Re: PHP read excel template?</title>
<link>http://www.dslreports.com/forum/remark,21525215</link>
<description><![CDATA[<A HREF="/useremail/u/246096"><b>yock</b></A> : Let me see if I understand. You have an Excel spreadsheet that you with to open as a web page, modify, and save the modifications back to a web page? You're esentially using Excel as the data back-end for a web application?]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,21525215</guid>
<pubDate>Thu, 04 Dec 2008 07:54:04 EDT</pubDate>
</item>

<item>
<title>Re: PHP read excel template?</title>
<link>http://www.dslreports.com/forum/remark,21525166</link>
<description><![CDATA[<A HREF="/useremail/u/825167"><b>johnnyboyct</b></A> : Hmmm, any links describing the com thing? I have no clue what to google.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,21525166</guid>
<pubDate>Thu, 04 Dec 2008 07:32:41 EDT</pubDate>
</item>

<item>
<title>Re: PHP read excel template?</title>
<link>http://www.dslreports.com/forum/remark,21522012</link>
<description><![CDATA[<A HREF="/useremail/u/1315094"><b>Shark_615</b></A> : If you are running PHP on a Windows server I believe you can open excel docs naively using COM or something. Its slow and horrible but would probably work.<br><br>Outside of that improbably setup there really isn't a way and I have researched it a bit.]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,21522012</guid>
<pubDate>Wed, 03 Dec 2008 16:33:03 EDT</pubDate>
</item>

<item>
<title>Re: PHP read excel template?</title>
<link>http://www.dslreports.com/forum/remark,21521087</link>
<description><![CDATA[<A HREF="/useremail/u/825167"><b>johnnyboyct</b></A> : Ive found some stuff that works to read or write, but nothing that works well both ways. We have a few REALLY complex sheets and so far the only thing I can do is save it as xml, then customize the xml with data from the app. Its a pain in the ass though. <br><small>--<br><A HREF="http://www.MilestoneMultimedia.com">Connecticut  Web Design and Development</a></small>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,21521087</guid>
<pubDate>Wed, 03 Dec 2008 13:45:58 EDT</pubDate>
</item>

<item>
<title>Re: PHP read excel template?</title>
<link>http://www.dslreports.com/forum/remark,21521020</link>
<description><![CDATA[<A HREF="/useremail/u/735916"><b>theedj</b></A> : I've never found anything PHP related that can directly handle input from an XLS...I've also had to convert to a CSV. If you're looking to make the template web based, wouldn't it be easier to recreate it online?]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,21521020</guid>
<pubDate>Wed, 03 Dec 2008 13:31:34 EDT</pubDate>
</item>

<item>
<title>PHP read excel template?</title>
<link>http://www.dslreports.com/forum/remark,21520804</link>
<description><![CDATA[<A HREF="/useremail/u/825167"><b>johnnyboyct</b></A> : Whats the best way to read an excel sheet with the formating and formulas left in place? <br><br>I have no problem writing, but Id like to use a template as a base<br><small>--<br><A HREF="http://www.MilestoneMultimedia.com">Connecticut  Web Design and Development</a></small>]]></description>
<guid isPermaLink="true">http://www.dslreports.com/forum/remark,21520804</guid>
<pubDate>Wed, 03 Dec 2008 12:50:20 EDT</pubDate>
</item>

</channel>
</rss>
