| |
|
Welcome to KnowledgeSutra - Dear Guest | |
Import From Excel File Into Mysql Database
#1
Posted 25 September 2005 - 06:05 AM
Other Replies To This Topic
#2
Posted 25 September 2005 - 06:14 AM
#4
Posted 11 April 2008 - 05:52 PM
Import From Excel File Into Mysql Database
I have to create a java desktop application that upload/loads the data from the MS Excel file (which is also on the desktop) into the specified table in a MySQL DB..
#5
Posted 16 April 2008 - 01:12 PM
Regrads
Visual basic guide
Http://www.Visualbasicguide.Com
-question by Edison
#6
Posted 28 April 2008 - 01:08 AM
Import From Excel File Into Mysql Database
Hi every body,,does any body can help me?in regards in importing an excel file to the data base in php language.Atually am building on it but theres nothing was there in my database
-reply by jai2
#10
Posted 04 September 2008 - 03:35 AM
I'm wrestling with the same issue for some time. We want to import our XLS files if possible to a MYSQL database and make them search-able. By the way I had another question that someone here may know the answer and that is how to invert this XLS file into TXT format to import it to MYSQL anyway?
Thank you for your help.
#12
Posted 10 September 2008 - 10:41 AM
Import From database Into excel sheet
Please send me a correct PHP code to import entries of database into excel sheet.
Thanks in advance.
-question by Sunil Kumar
---- admin reply ------
Please use a tool called PHPmyADMIN to export into EXCEL directly
OR
EXPORT into CSV format.
#14
Posted 04 August 2009 - 10:03 PM
#15
Posted 17 November 2009 - 09:29 AM
<?php $data = array(); function add_person( $first, $middle, $last, $email ) { global $data; $data []= array( 'first' => $first, 'middle' => $middle, 'last' => $last, 'email' => $email ); } if ( $_FILES['file']['tmp_name'] ) { $dom = DOMDocument::load( $_FILES['file']['tmp_name'] ); $rows = $dom->getElementsByTagName( 'Row' ); $first_row = true; foreach ($rows as $row) { if ( !$first_row ) { $first = ""; $middle = ""; $last = ""; $email = ""; $index = 1; $cells = $row->getElementsByTagName( 'Cell' ); foreach( $cells as $cell ) { $ind = $cell->getAttribute( 'Index' ); if ( $ind != null ) $index = $ind; if ( $index == 1 ) $first = $cell->nodeValue; if ( $index == 2 ) $middle = $cell->nodeValue; if ( $index == 3 ) $last = $cell->nodeValue; if ( $index == 4 ) $email = $cell->nodeValue; $index += 1; } add_person( $first, $middle, $last, $email ); } $first_row = false; } } $username = "root"; $password = ''; $hostname = "localhost"; $con = mysql_connect($hostname,$username,$password) or die("Unable to connect to MySQL"); mysql_select_db("sample",$con); mysql_error(); foreach($data as $row) { mysql_query("insert into names values('','$row[first]','$row[middle]','$row[last]','$row[email]')"); } ?>
<html> <head> </head> <body> <form action='import.Php' method='post' name='names' enctype='multipart/form-data'> <table> <tr> <td>Upload file :</td> <td><input type='file' name='file'></td> </tr> <tr> <td></td> <td><input type='submit' value='upload'></td> </tr> </table> </form> </body></html>
-reply by kuppa pavan
#16
Posted 02 December 2009 - 03:16 PM
Fatal error: Call to a member function getelementsbytagname() on a non-object
I get the above error with this script. I have not changed anything in the script and my excel file has four columns with no headers in the first row. Can anyone help?!?
-reply by Nicholas

Help

Add Reply

MultiQuote
















