PHPを使用してExcelファイルをMySQLにインポートしています。次のコードは、csvファイルでは機能しますが、xls/xlsxファイル形式では機能しません。 PHPでXLSファイルのxls/xlsxファイルをインポートできません
<html>
<head>
<meta charset="utf-8">
<title>Import Excel to MySQL using PHP </title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>
<body style="padding-top:50px;">
<div class="container"><!-- container class is used to centered the body of the browser with some decent width-->
<div class="row"><!-- row class is used for grid system in Bootstrap-->
<div class="col-md-4 col-md-offset-4"><!--col-md-4 is used to create the no of colums in the grid also use for medimum and large devices-->
<div class="login-panel panel panel-success">
<div class="panel-heading">
<h3 class="panel-title">Import here</h3>
</div>
<div class="panel-body">
<form method="post" action="import.php" enctype="multipart/form-data">
<fieldset>
<div class="form-group">
<input type="file" name="file"/>
</div>
<input class="btn btn-success" type="submit" name="submit_file" value="Submit"/>
</fieldset>
</form>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
Import.php
<?php
error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);
/*
Developer: Ehtesham Mehmood
Site: PHPCodify.com
Script: Import Excel to MySQL using PHP and Bootstrap
File: import.php
*/
// Including database connections
require_once 'db_con.php';
if(isset($_POST["submit_file"]))
{
$file = $_FILES["file"]["tmp_name"];
$file_open = fopen($file,"r");
while(($csv = fgetcsv($file_open, 1000, ",")) !== false)
{
$employee_name = $csv[0];
$employee_designation = $csv[1];
$employee_salary = $csv[2];
$stmt = $DBcon->prepare("INSERT INTO employee(employee_name,employee_designation,employee_salary) VALUES(:employee_name,:employee_designation,:employee_salary)");
$stmt->bindparam(':employee_name', $employee_name);
$stmt->bindparam(':employee_designation', $employee_designation);
$stmt->bindparam(':employee_salary', $employee_salary);
$stmt->execute();
}
}
echo "Imported Successfully";
?>
これはCSVファイルのみを使用しています。しかし、XLSファイルの場合、別の方法があります。 – kvk30
私はタイトルを改善し、より多くの可視性のために質問に移動し、文法と繰り返しの性質を掃除しました – Shawn