Search code examples
phpmysqlimageimport-from-excel

I want to import excel file in php/mysql with some images too. Does anyone has solution?


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.


Solution

  • 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.