<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Importing Excel files into MySQL with PHP</title>
	<atom:link href="http://rackerhacker.com/2008/11/07/importing-excel-files-into-mysql-with-php/feed/" rel="self" type="application/rss+xml" />
	<link>http://rackerhacker.com/2008/11/07/importing-excel-files-into-mysql-with-php/</link>
	<description>Words of wisdom from a server administrator</description>
	<lastBuildDate>Mon, 21 May 2012 12:07:17 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Arvind</title>
		<link>http://rackerhacker.com/2008/11/07/importing-excel-files-into-mysql-with-php/#comment-28517</link>
		<dc:creator>Arvind</dc:creator>
		<pubDate>Tue, 15 May 2012 06:51:01 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/?p=601#comment-28517</guid>
		<description>Hi

Major

It is very easy. 

Thanks</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>Major</p>
<p>It is very easy. </p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: haidar</title>
		<link>http://rackerhacker.com/2008/11/07/importing-excel-files-into-mysql-with-php/#comment-28424</link>
		<dc:creator>haidar</dc:creator>
		<pubDate>Sun, 06 May 2012 15:24:49 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/?p=601#comment-28424</guid>
		<description>Please Help Me
every thing is ok
but i have the ERROR
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;
The filename exceltestsheet.xls is not readable          &gt;
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;

how can i solve it

i saved my Excel file AS 2003
And Put the same name appeared in u r php code in it

HOW CAN I SOLVE THIS

PLEASE HELP</description>
		<content:encoded><![CDATA[<p>Please Help Me<br />
every thing is ok<br />
but i have the ERROR<br />
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;<br />
The filename exceltestsheet.xls is not readable          &gt;<br />
&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;</p>
<p>how can i solve it</p>
<p>i saved my Excel file AS 2003<br />
And Put the same name appeared in u r php code in it</p>
<p>HOW CAN I SOLVE THIS</p>
<p>PLEASE HELP</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: brian</title>
		<link>http://rackerhacker.com/2008/11/07/importing-excel-files-into-mysql-with-php/#comment-28203</link>
		<dc:creator>brian</dc:creator>
		<pubDate>Thu, 19 Apr 2012 13:25:18 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/?p=601#comment-28203</guid>
		<description>Hey
I am trying to make it happen with the phpexcelreader but it keeps throwing an error &#039;The filename is not readable&#039; What might be the problem?</description>
		<content:encoded><![CDATA[<p>Hey<br />
I am trying to make it happen with the phpexcelreader but it keeps throwing an error 'The filename is not readable' What might be the problem?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: murad</title>
		<link>http://rackerhacker.com/2008/11/07/importing-excel-files-into-mysql-with-php/#comment-28090</link>
		<dc:creator>murad</dc:creator>
		<pubDate>Fri, 13 Apr 2012 14:09:34 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/?p=601#comment-28090</guid>
		<description>require_once &#039;Spreadsheet/Excel/reader.php&#039;;
$data = new Spreadsheet_Excel_Reader();
$data-&gt;setOutputEncoding(&#039;CP1251&#039;);
$data-&gt;read(&#039;mom.xls&#039;);
 
$conn = mysql_connect(&quot;localhost&quot;,&quot;root&quot;,&quot;123&quot;);
mysql_select_db(&quot;test&quot;,$conn);
 
for ($x = 2; $xsheets[0][&quot;cells&quot;]); $x++) {
    $name = $data-&gt;sheets[0][&quot;cells&quot;][$x][1];
    $extension = $data-&gt;sheets[0][&quot;cells&quot;][$x][2];
    $email = $data-&gt;sheets[0][&quot;cells&quot;][$x][3];
    $sql = &quot;INSERT INTO mytable (name,extension,email) 
        VALUES (&#039;$name&#039;,$extension,&#039;$email&#039;)&quot;;
    echo $sql.&quot;\n&quot;;
    mysql_query($sql);
}

work well.</description>
		<content:encoded><![CDATA[<p>require_once 'Spreadsheet/Excel/reader.php';<br />
$data = new Spreadsheet_Excel_Reader();<br />
$data-&gt;setOutputEncoding('CP1251');<br />
$data-&gt;read('mom.xls');</p>
<p>$conn = mysql_connect("localhost","root","123");<br />
mysql_select_db("test",$conn);</p>
<p>for ($x = 2; $xsheets[0]["cells"]); $x++) {<br />
    $name = $data-&gt;sheets[0]["cells"][$x][1];<br />
    $extension = $data-&gt;sheets[0]["cells"][$x][2];<br />
    $email = $data-&gt;sheets[0]["cells"][$x][3];<br />
    $sql = "INSERT INTO mytable (name,extension,email)<br />
        VALUES ('$name',$extension,'$email')";<br />
    echo $sql."\n";<br />
    mysql_query($sql);<br />
}</p>
<p>work well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: m. jowkar</title>
		<link>http://rackerhacker.com/2008/11/07/importing-excel-files-into-mysql-with-php/#comment-28050</link>
		<dc:creator>m. jowkar</dc:creator>
		<pubDate>Wed, 11 Apr 2012 15:47:25 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/?p=601#comment-28050</guid>
		<description>thanks, it very easy</description>
		<content:encoded><![CDATA[<p>thanks, it very easy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Smita Ahuja</title>
		<link>http://rackerhacker.com/2008/11/07/importing-excel-files-into-mysql-with-php/#comment-27912</link>
		<dc:creator>Smita Ahuja</dc:creator>
		<pubDate>Wed, 04 Apr 2012 14:10:17 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/?p=601#comment-27912</guid>
		<description>The adding of columns more than six doesn&#039;t work out.. Actually when we try to add the columns more than six the specified row is not inserted to the db.. PLEASE HELP ME ,... I am in a urgent need..</description>
		<content:encoded><![CDATA[<p>The adding of columns more than six doesn't work out.. Actually when we try to add the columns more than six the specified row is not inserted to the db.. PLEASE HELP ME ,... I am in a urgent need..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ankita Raj</title>
		<link>http://rackerhacker.com/2008/11/07/importing-excel-files-into-mysql-with-php/#comment-27911</link>
		<dc:creator>Ankita Raj</dc:creator>
		<pubDate>Wed, 04 Apr 2012 14:04:07 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/?p=601#comment-27911</guid>
		<description>Actually i did the same but i am able to add columns more than 6.. Rows are being added up leaving behind the columns ..No problem in excel file.. &quot;$phno = $data-&gt;sheets[0][&quot;cells&quot;][$x][7];&quot; This doesn&#039;t work out...no column is added to the db.</description>
		<content:encoded><![CDATA[<p>Actually i did the same but i am able to add columns more than 6.. Rows are being added up leaving behind the columns ..No problem in excel file.. "$phno = $data-&gt;sheets[0]["cells"][$x][7];" This doesn't work out...no column is added to the db.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sourabh</title>
		<link>http://rackerhacker.com/2008/11/07/importing-excel-files-into-mysql-with-php/#comment-27896</link>
		<dc:creator>Sourabh</dc:creator>
		<pubDate>Tue, 03 Apr 2012 19:07:53 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/?p=601#comment-27896</guid>
		<description>If you are using this code:
require_once &#039;Excel/reader.php&#039;;
$data = new Spreadsheet_Excel_Reader();
$data-&gt;setOutputEncoding(&#039;CP1251&#039;);
$data-&gt;read(&#039;exceltestsheet.xls&#039;);
 
$conn = mysql_connect(&quot;hostname&quot;,&quot;username&quot;,&quot;password&quot;);
mysql_select_db(&quot;database&quot;,$conn);
 
for ($x = 2; $x sheets[0][&quot;cells&quot;]); $x++) {
    $name = $data-&gt;sheets[0][&quot;cells&quot;][$x][1];
    $extension = $data-&gt;sheets[0][&quot;cells&quot;][$x][2];
    $email = $data-&gt;sheets[0][&quot;cells&quot;][$x][3];
    $sql = &quot;INSERT INTO mytable (name,extension,email) 
        VALUES (&#039;$name&#039;,$extension,&#039;$email&#039;)&quot;;
    echo $sql.&quot;\n&quot;;
    mysql_query($sql);
}

As given in the article, 
Then it should not be a problem.

I myself have added more than 20-25 rows in the table using this code.
Make sure that you store the data in the variable first and then use itin sql query.

Also make sure, there is no problem in your excel file also.</description>
		<content:encoded><![CDATA[<p>If you are using this code:<br />
require_once 'Excel/reader.php';<br />
$data = new Spreadsheet_Excel_Reader();<br />
$data-&gt;setOutputEncoding('CP1251');<br />
$data-&gt;read('exceltestsheet.xls');</p>
<p>$conn = mysql_connect("hostname","username","password");<br />
mysql_select_db("database",$conn);</p>
<p>for ($x = 2; $x sheets[0]["cells"]); $x++) {<br />
    $name = $data-&gt;sheets[0]["cells"][$x][1];<br />
    $extension = $data-&gt;sheets[0]["cells"][$x][2];<br />
    $email = $data-&gt;sheets[0]["cells"][$x][3];<br />
    $sql = "INSERT INTO mytable (name,extension,email)<br />
        VALUES ('$name',$extension,'$email')";<br />
    echo $sql."\n";<br />
    mysql_query($sql);<br />
}</p>
<p>As given in the article,<br />
Then it should not be a problem.</p>
<p>I myself have added more than 20-25 rows in the table using this code.<br />
Make sure that you store the data in the variable first and then use itin sql query.</p>
<p>Also make sure, there is no problem in your excel file also.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ankita Raj</title>
		<link>http://rackerhacker.com/2008/11/07/importing-excel-files-into-mysql-with-php/#comment-27895</link>
		<dc:creator>Ankita Raj</dc:creator>
		<pubDate>Tue, 03 Apr 2012 19:00:09 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/?p=601#comment-27895</guid>
		<description>Sir it only takes up six columns , as u told to repeat the steps using a no of variables i too did the same but no results. At max six columns are added..Is there any way to modify the &quot;reader.php&quot; or &quot;oleread.inc&quot; files ? to make it to take more than six colums.. Please reply soon..</description>
		<content:encoded><![CDATA[<p>Sir it only takes up six columns , as u told to repeat the steps using a no of variables i too did the same but no results. At max six columns are added..Is there any way to modify the "reader.php" or "oleread.inc" files ? to make it to take more than six colums.. Please reply soon..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: soumya</title>
		<link>http://rackerhacker.com/2008/11/07/importing-excel-files-into-mysql-with-php/#comment-27892</link>
		<dc:creator>soumya</dc:creator>
		<pubDate>Tue, 03 Apr 2012 18:51:59 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/?p=601#comment-27892</guid>
		<description>I tried a lot to add more number of columns but it only imports 6 rows in to the mysql db... Any alternative method to do that.. I tried with a lot of variables and looping structure but it only imports 6 no of columns.. HELP ME!!!</description>
		<content:encoded><![CDATA[<p>I tried a lot to add more number of columns but it only imports 6 rows in to the mysql db... Any alternative method to do that.. I tried with a lot of variables and looping structure but it only imports 6 no of columns.. HELP ME!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SP</title>
		<link>http://rackerhacker.com/2008/11/07/importing-excel-files-into-mysql-with-php/#comment-27805</link>
		<dc:creator>SP</dc:creator>
		<pubDate>Fri, 30 Mar 2012 18:45:08 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/?p=601#comment-27805</guid>
		<description>Hi,

Is there any way to do the revers? I want to get all the data I have in the mysql database to excel.
I can see a class named Excelwriter. I am not much of a coder. Is that useful anyhow?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Is there any way to do the revers? I want to get all the data I have in the mysql database to excel.<br />
I can see a class named Excelwriter. I am not much of a coder. Is that useful anyhow?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jawwad</title>
		<link>http://rackerhacker.com/2008/11/07/importing-excel-files-into-mysql-with-php/#comment-27429</link>
		<dc:creator>jawwad</dc:creator>
		<pubDate>Sun, 04 Mar 2012 19:08:58 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/?p=601#comment-27429</guid>
		<description>The code is working but every time it shows error which is given below.

&quot;The filename exceltestsheet.xls is not readable&quot;

can anyone help me i am using ms excel 2010 but i&#039;ve saved the file into 2003 format but it could not read my file any more... kind reply me soon thanks in advance</description>
		<content:encoded><![CDATA[<p>The code is working but every time it shows error which is given below.</p>
<p>"The filename exceltestsheet.xls is not readable"</p>
<p>can anyone help me i am using ms excel 2010 but i've saved the file into 2003 format but it could not read my file any more... kind reply me soon thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: supraja</title>
		<link>http://rackerhacker.com/2008/11/07/importing-excel-files-into-mysql-with-php/#comment-27109</link>
		<dc:creator>supraja</dc:creator>
		<pubDate>Fri, 03 Feb 2012 10:42:06 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/?p=601#comment-27109</guid>
		<description>setOutputEncoding(&#039;CP1251&#039;);
$data-&gt;read(&#039;example.xls&#039;);
 
$conn = mysql_connect(&quot;10.40.20.201&quot;,&quot;root&quot;,&quot;tanla@123&quot;);
mysql_select_db(&quot;voiceobd&quot;,$conn);
 
for ($x = 2; $xsheets[0][&quot;cells&quot;]); $x++)
{
    $msisdn=$data-&gt;sheets[0][&quot;cells&quot;][$x][1];
    $achievement=$data-&gt;sheets[0][&quot;cells&quot;][$x][2];
    $date=$data-&gt;sheets[0][&quot;cells&quot;][$x][3];
    $sql=&quot;INSERT INTO achievementlist (msisdn,achieved,date)VALUES (&#039;$msisdn&#039;,$achievement,&#039;$date&#039;)&quot;;
    echo $sql.&quot;\n&quot;;
    mysql_query($sql);
}
?&gt;




after executing it is showing:

The filename example.xls is not readable</description>
		<content:encoded><![CDATA[<p>setOutputEncoding('CP1251');<br />
$data-&gt;read('example.xls');</p>
<p>$conn = mysql_connect("10.40.20.201","root","tanla@123");<br />
mysql_select_db("voiceobd",$conn);</p>
<p>for ($x = 2; $xsheets[0]["cells"]); $x++)<br />
{<br />
    $msisdn=$data-&gt;sheets[0]["cells"][$x][1];<br />
    $achievement=$data-&gt;sheets[0]["cells"][$x][2];<br />
    $date=$data-&gt;sheets[0]["cells"][$x][3];<br />
    $sql="INSERT INTO achievementlist (msisdn,achieved,date)VALUES ('$msisdn',$achievement,'$date')";<br />
    echo $sql."\n";<br />
    mysql_query($sql);<br />
}<br />
?&gt;</p>
<p>after executing it is showing:</p>
<p>The filename example.xls is not readable</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: asma</title>
		<link>http://rackerhacker.com/2008/11/07/importing-excel-files-into-mysql-with-php/#comment-26954</link>
		<dc:creator>asma</dc:creator>
		<pubDate>Tue, 24 Jan 2012 10:23:28 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/?p=601#comment-26954</guid>
		<description>hello
the program  works but when I home him  I find these problems
&quot;Notice: Uninitialized string offset: 2199023255040 in /home/suptec/public_html/charlemagne/Excel/oleread.php on line 27&quot; and 
Notice: Undefined index: in /home/suptec/public_html/charlemagne/Excel/oleread.php on line 136
and 
Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 71 bytes) in /home/suptec/public_html/charlemagne/Excel/oleread.php on line 131
plz help me</description>
		<content:encoded><![CDATA[<p>hello<br />
the program  works but when I home him  I find these problems<br />
"Notice: Uninitialized string offset: 2199023255040 in /home/suptec/public_html/charlemagne/Excel/oleread.php on line 27" and<br />
Notice: Undefined index: in /home/suptec/public_html/charlemagne/Excel/oleread.php on line 136<br />
and<br />
Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 71 bytes) in /home/suptec/public_html/charlemagne/Excel/oleread.php on line 131<br />
plz help me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Blingue</title>
		<link>http://rackerhacker.com/2008/11/07/importing-excel-files-into-mysql-with-php/#comment-26518</link>
		<dc:creator>Blingue</dc:creator>
		<pubDate>Fri, 30 Dec 2011 12:33:33 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/?p=601#comment-26518</guid>
		<description>Really Awesome script, work great for me. Thanks a lot!!!</description>
		<content:encoded><![CDATA[<p>Really Awesome script, work great for me. Thanks a lot!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daisy</title>
		<link>http://rackerhacker.com/2008/11/07/importing-excel-files-into-mysql-with-php/#comment-25731</link>
		<dc:creator>Daisy</dc:creator>
		<pubDate>Sat, 19 Nov 2011 03:41:01 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/?p=601#comment-25731</guid>
		<description>Hi,

I am having a problem with when excel date. The value of date I got from excel shows only like this (Mar/Tue/2010201020102010). Anyone can help?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I am having a problem with when excel date. The value of date I got from excel shows only like this (Mar/Tue/2010201020102010). Anyone can help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sem</title>
		<link>http://rackerhacker.com/2008/11/07/importing-excel-files-into-mysql-with-php/#comment-25711</link>
		<dc:creator>Sem</dc:creator>
		<pubDate>Thu, 17 Nov 2011 18:30:52 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/?p=601#comment-25711</guid>
		<description>Hello,

I am having a hard time resolving a problem regarding utf-8 characterset, Turkish to be specific. I am trying to import a username that has some of these characters, İŞĞÇÜÖ.

if the column has İ in it, it interprets the rest of these unique characters just fine, meaning that it prints them out ok. but if there is no İ but other characters like ŞĞÇÜÖ, it does not interprets them as it should.

Any idea why?</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I am having a hard time resolving a problem regarding utf-8 characterset, Turkish to be specific. I am trying to import a username that has some of these characters, İŞĞÇÜÖ.</p>
<p>if the column has İ in it, it interprets the rest of these unique characters just fine, meaning that it prints them out ok. but if there is no İ but other characters like ŞĞÇÜÖ, it does not interprets them as it should.</p>
<p>Any idea why?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martín Indico</title>
		<link>http://rackerhacker.com/2008/11/07/importing-excel-files-into-mysql-with-php/#comment-25546</link>
		<dc:creator>Martín Indico</dc:creator>
		<pubDate>Fri, 28 Oct 2011 23:40:50 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/?p=601#comment-25546</guid>
		<description>Thanks for your post, tried it on my website and it worked very well with .xls spreadsheet excel 2003, I have not had any problems.</description>
		<content:encoded><![CDATA[<p>Thanks for your post, tried it on my website and it worked very well with .xls spreadsheet excel 2003, I have not had any problems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: harisoft</title>
		<link>http://rackerhacker.com/2008/11/07/importing-excel-files-into-mysql-with-php/#comment-25535</link>
		<dc:creator>harisoft</dc:creator>
		<pubDate>Wed, 26 Oct 2011 11:55:18 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/?p=601#comment-25535</guid>
		<description>Not working. Getting message &quot;
Fatal error: Maximum execution time of 30 seconds exceeded in C:\wamp\www\Spreadsheet\Excel\Excel\Spreadsheet\Excel\Reader\oleread.php on line 172&quot;</description>
		<content:encoded><![CDATA[<p>Not working. Getting message "<br />
Fatal error: Maximum execution time of 30 seconds exceeded in C:\wamp\www\Spreadsheet\Excel\Excel\Spreadsheet\Excel\Reader\oleread.php on line 172"</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Balanca</title>
		<link>http://rackerhacker.com/2008/11/07/importing-excel-files-into-mysql-with-php/#comment-25237</link>
		<dc:creator>Balanca</dc:creator>
		<pubDate>Tue, 11 Oct 2011 07:39:25 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/?p=601#comment-25237</guid>
		<description>Can&#039;t get it to work!

It displays this message:

Fatal error: Maximum execution time of 30 seconds exceeded in oleread.inc on line 172

Can anybody help me, please.</description>
		<content:encoded><![CDATA[<p>Can't get it to work!</p>
<p>It displays this message:</p>
<p>Fatal error: Maximum execution time of 30 seconds exceeded in oleread.inc on line 172</p>
<p>Can anybody help me, please.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arun</title>
		<link>http://rackerhacker.com/2008/11/07/importing-excel-files-into-mysql-with-php/#comment-24948</link>
		<dc:creator>Arun</dc:creator>
		<pubDate>Wed, 28 Sep 2011 09:14:15 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/?p=601#comment-24948</guid>
		<description>Very nce. thanks ;)</description>
		<content:encoded><![CDATA[<p>Very nce. thanks <img src='http://rackerhacker.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: swaraaj</title>
		<link>http://rackerhacker.com/2008/11/07/importing-excel-files-into-mysql-with-php/#comment-24451</link>
		<dc:creator>swaraaj</dc:creator>
		<pubDate>Wed, 07 Sep 2011 21:16:55 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/?p=601#comment-24451</guid>
		<description>Hi Nnamdi

$this-&gt;_ole = &amp; new OLERead(); (line 261a)

just remove the &#039;&amp;&#039; sign there and your script will be working this is really awesome script for exporting data from excel file to sql its really worth working with it.

thanks a lot 
for any query feel free to post here.</description>
		<content:encoded><![CDATA[<p>Hi Nnamdi</p>
<p>$this->_ole = &#038; new OLERead(); (line 261a)</p>
<p>just remove the '&#038;' sign there and your script will be working this is really awesome script for exporting data from excel file to sql its really worth working with it.</p>
<p>thanks a lot<br />
for any query feel free to post here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nnamdi</title>
		<link>http://rackerhacker.com/2008/11/07/importing-excel-files-into-mysql-with-php/#comment-22930</link>
		<dc:creator>Nnamdi</dc:creator>
		<pubDate>Thu, 12 May 2011 08:48:12 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/?p=601#comment-22930</guid>
		<description>Good Morning Colleagues,

I get the exception message below, each time I run the codes above.


Deprecated: Assigning the return value of new by reference is deprecated in C:\wamp\www\LGHS\admin\Excel\reader.php on line 261</description>
		<content:encoded><![CDATA[<p>Good Morning Colleagues,</p>
<p>I get the exception message below, each time I run the codes above.</p>
<p>Deprecated: Assigning the return value of new by reference is deprecated in C:\wamp\www\LGHS\admin\Excel\reader.php on line 261</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Major Hayden</title>
		<link>http://rackerhacker.com/2008/11/07/importing-excel-files-into-mysql-with-php/#comment-22693</link>
		<dc:creator>Major Hayden</dc:creator>
		<pubDate>Fri, 15 Apr 2011 11:42:50 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/?p=601#comment-22693</guid>
		<description>gk - 

Glad I could help!</description>
		<content:encoded><![CDATA[<p>gk - </p>
<p>Glad I could help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gk</title>
		<link>http://rackerhacker.com/2008/11/07/importing-excel-files-into-mysql-with-php/#comment-22687</link>
		<dc:creator>gk</dc:creator>
		<pubDate>Fri, 15 Apr 2011 07:03:36 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/?p=601#comment-22687</guid>
		<description>This is Awesome script and worked for me really very well....

Thanks a lot</description>
		<content:encoded><![CDATA[<p>This is Awesome script and worked for me really very well....</p>
<p>Thanks a lot</p>
]]></content:encoded>
	</item>
</channel>
</rss>

