0

I want to import excel file in php/mysql with some images too. Does anyone has solution? If Yes, Then plz reply with required software insatallation too.

pnuts
  • 58,317
  • 11
  • 87
  • 139
Akshay Vaghasiya
  • 1,597
  • 9
  • 36
  • 60
  • possible duplicate of [Import excel files with image in php/mysql](http://stackoverflow.com/questions/3046246/import-excel-files-with-image-in-php-mysql) – Leandro Papasidero Feb 21 '15 at 06:06

1 Answers1

0

I would recommend you to use the library named as PHP Excel. Here is the Link

Here is the list of Examples

Click here to view the Excel downloads with image

You will be giving the path like $objDrawing->setPath('./images/phpexcel_logo.gif');

And for more attributes

$objDrawing->setName('Paid');
$objDrawing->setDescription('Paid');
$objDrawing->setCoordinates('B15');
$objDrawing->setOffsetX(110);
$objDrawing->setRotation(25);

You shall download the library and see the examples provided in it.

Sulthan Allaudeen
  • 11,330
  • 12
  • 48
  • 63